aboutsummaryrefslogtreecommitdiff
path: root/test/try_gleam_test.gleam
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2023-12-19 20:43:03 +0000
committerLouis Pilfold <louis@lpil.uk>2023-12-19 20:43:03 +0000
commitc03851594982f12888dbab80d2d307e0e5bb3075 (patch)
treece9e3e52ce55fc69df623846478b6faaf6708110 /test/try_gleam_test.gleam
parent9a2ce8bbe7291b8451622688c44070c0acd55b9b (diff)
downloadtour-c03851594982f12888dbab80d2d307e0e5bb3075.tar.gz
tour-c03851594982f12888dbab80d2d307e0e5bb3075.zip
Fix test
Diffstat (limited to 'test/try_gleam_test.gleam')
-rw-r--r--test/try_gleam_test.gleam11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/try_gleam_test.gleam b/test/try_gleam_test.gleam
new file mode 100644
index 0000000..67c2bd5
--- /dev/null
+++ b/test/try_gleam_test.gleam
@@ -0,0 +1,11 @@
+import gleeunit
+import gleeunit/should
+
+pub fn main() {
+ gleeunit.main()
+}
+
+pub fn hello_world_test() {
+ 1
+ |> should.equal(1)
+}