~repos /gromer
git clone https://pyrossh.dev/repos/gromer.git
gromer is a framework and cli to build multipage web apps in golang using htmx and alpinejs.
css test
- css_test.go +11 -0
css_test.go
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
package app
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"testing"
|
|
5
|
+
|
|
6
|
+
"github.com/stretchr/testify/assert"
|
|
7
|
+
)
|
|
8
|
+
|
|
9
|
+
func TestCss(t *testing.T) {
|
|
10
|
+
assert.Equal(t, "123", Css("123").classes)
|
|
11
|
+
}
|