diff options
Diffstat (limited to 'components/elements_test.go')
-rw-r--r-- | components/elements_test.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/components/elements_test.go b/components/elements_test.go index 334ed2c..7dc4eec 100644 --- a/components/elements_test.go +++ b/components/elements_test.go @@ -14,3 +14,17 @@ func TestInputHidden(t *testing.T) { assert.Equal(t, `<input type="hidden" name="id" value="partyhat" class="hat">`, n) }) } + +func TestLinkStylesheet(t *testing.T) { + t.Run("returns a link element with rel stylesheet and the given href", func(t *testing.T) { + n := c.LinkStylesheet("style.css", g.Attr("media", "print")) + assert.Equal(t, `<link rel="stylesheet" href="style.css" media="print">`, n) + }) +} + +func TestLinkPreload(t *testing.T) { + t.Run("returns a link element with rel preload and the given href and as", func(t *testing.T) { + n := c.LinkPreload("party.woff2", "font", g.Attr("type", "font/woff2")) + assert.Equal(t, `<link rel="preload" href="party.woff2" as="font" type="font/woff2">`, n) + }) +} |