about summary refs log tree commit diff stats
path: root/html/attributes_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/attributes_test.go')
-rw-r--r--html/attributes_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/html/attributes_test.go b/html/attributes_test.go
index ba8cbb4..23445db 100644
--- a/html/attributes_test.go
+++ b/html/attributes_test.go
@@ -57,6 +57,7 @@ func TestSimpleAttributes(t *testing.T) {
 		"preload":      Preload,
 		"placeholder":  Placeholder,
 		"rel":          Rel,
+		"role":         Role,
 		"rows":         Rows,
 		"src":          Src,
 		"style":        StyleAttr,
@@ -75,3 +76,10 @@ func TestSimpleAttributes(t *testing.T) {
 		})
 	}
 }
+
+func TestAria(t *testing.T) {
+	t.Run("returns an attribute which name is prefixed with aria-", func(t *testing.T) {
+		n := Aria("selected", "true")
+		assert.Equal(t, ` aria-selected="true"`, n)
+	})
+}