aboutsummaryrefslogtreecommitdiff
path: root/test/tour_test.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'test/tour_test.gleam')
-rw-r--r--test/tour_test.gleam11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/tour_test.gleam b/test/tour_test.gleam
new file mode 100644
index 0000000..67c2bd5
--- /dev/null
+++ b/test/tour_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)
+}