diff options
author | Louis Pilfold <louis@lpil.uk> | 2023-12-01 22:17:09 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2023-12-06 16:20:50 +0000 |
commit | e32d68d064c4663818dc5445541f2cd67d2e04dc (patch) | |
tree | 5270ebce540312e8d7ea76a78e656726245920e0 /test | |
download | tour-e32d68d064c4663818dc5445541f2cd67d2e04dc.tar.gz tour-e32d68d064c4663818dc5445541f2cd67d2e04dc.zip |
Rename
Diffstat (limited to 'test')
-rw-r--r-- | test/playground_test.gleam | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/playground_test.gleam b/test/playground_test.gleam new file mode 100644 index 0000000..3831e7a --- /dev/null +++ b/test/playground_test.gleam @@ -0,0 +1,12 @@ +import gleeunit +import gleeunit/should + +pub fn main() { + gleeunit.main() +} + +// gleeunit test functions end in `_test` +pub fn hello_world_test() { + 1 + |> should.equal(1) +} |