all repos — gomponents @ 3e9e00ca0dc6b58e58694d84c97a1d2f2ab4002b

HTML components in pure Go

components/elements_test.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package components_test

import (
	"testing"

	g "github.com/maragudk/gomponents"
	"github.com/maragudk/gomponents/assert"
	c "github.com/maragudk/gomponents/components"
)

func TestInputHidden(t *testing.T) {
	t.Run("returns an input element with type hidden, and the given name and value", func(t *testing.T) {
		n := c.InputHidden("id", "partyhat", g.Attr("class", "hat"))
		assert.Equal(t, `<input type="hidden" name="id" value="partyhat" class="hat">`, n)
	})
}