From 6f7752c20f605dda102992a984d111cdcd19c57b Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Wed, 5 May 2021 12:53:32 +0200 Subject: Add svg package and a few helpers (#67) Introducing SVG, to inline vector graphics in your HTML! 🥳--- svg/attributes_test.go | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 svg/attributes_test.go (limited to 'svg/attributes_test.go') diff --git a/svg/attributes_test.go b/svg/attributes_test.go new file mode 100644 index 0000000..41935e8 --- /dev/null +++ b/svg/attributes_test.go @@ -0,0 +1,28 @@ +package svg_test + +import ( + "fmt" + "testing" + + g "github.com/maragudk/gomponents" + "github.com/maragudk/gomponents/assert" + . "github.com/maragudk/gomponents/svg" +) + +func TestSimpleAttributes(t *testing.T) { + cases := map[string]func(string) g.Node{ + "clip-rule": ClipRule, + "d": D, + "fill": Fill, + "fill-rule": FillRule, + "stroke": Stroke, + "viewBox": ViewBox, + } + + for name, fn := range cases { + t.Run(fmt.Sprintf(`should output %v="hat"`, name), func(t *testing.T) { + n := g.El("element", fn("hat")) + assert.Equal(t, fmt.Sprintf(``, name), n) + }) + } +} -- cgit 1.4.1