diff options
author | EuAndreh <eu@euandre.org> | 2024-05-14 10:21:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-05-14 10:21:04 -0300 |
commit | e10252708668b1b82ee4b8bca02c43fda3115c62 (patch) | |
tree | ba450ba549dbd836b263c7a302188460efc6603b /tests | |
parent | Initial empty commit (diff) | |
download | glaze-e10252708668b1b82ee4b8bca02c43fda3115c62.tar.gz glaze-e10252708668b1b82ee4b8bca02c43fda3115c62.tar.xz |
Initial implementation
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/cli-opts.sh | 4 | ||||
-rw-r--r-- | tests/lib_test.go | 13 |
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh new file mode 100755 index 0000000..fcb62ca --- /dev/null +++ b/tests/cli-opts.sh @@ -0,0 +1,4 @@ +#!/bin/sh +set -eu + +exit 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() + } +} |