about summary refs log tree commit diff stats
path: root/internal/import/import_test.go
blob: d81b9678a296da17a9f1e4d4360c7a092338e0cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package import_test

import (
	"testing"

	. "go.alanpearce.eu/gomponents"
	. "go.alanpearce.eu/gomponents/components"
	. "go.alanpearce.eu/gomponents/html"
	. "go.alanpearce.eu/gomponents/http"
)

func TestImports(t *testing.T) {
	t.Run(
		"this is just a test that does nothing, but I need the dot imports above",
		func(t *testing.T) {
			_ = El("div")
			_ = A()
			_ = HTML5(HTML5Props{})
			_ = Adapt(nil)
		},
	)
}