summaryrefslogtreecommitdiff
path: root/tests/lib_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib_test.go')
-rw-r--r--tests/lib_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/lib_test.go b/tests/lib_test.go
new file mode 100644
index 0000000..31259c6
--- /dev/null
+++ b/tests/lib_test.go
@@ -0,0 +1,13 @@
+package lib_test
+
+import (
+ "testing"
+
+ "euandre.org/glaze/src"
+)
+
+func TestPlaceholder(t *testing.T) {
+ if (&glaze.PatternPath{}).String() != "FIXME" {
+ t.Fail()
+ }
+}