aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2023-12-01 22:17:09 +0000
committerLouis Pilfold <louis@lpil.uk>2023-12-06 16:20:50 +0000
commite32d68d064c4663818dc5445541f2cd67d2e04dc (patch)
tree5270ebce540312e8d7ea76a78e656726245920e0 /test
downloadtour-e32d68d064c4663818dc5445541f2cd67d2e04dc.tar.gz
tour-e32d68d064c4663818dc5445541f2cd67d2e04dc.zip
Rename
Diffstat (limited to 'test')
-rw-r--r--test/playground_test.gleam12
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)
+}