aboutsummaryrefslogtreecommitdiff
path: root/aoc2019_gleam/test/aoc2019_gleam_test.gleam
diff options
context:
space:
mode:
authorJ.J <thechairman@thechairman.info>2024-05-30 22:08:11 -0400
committerJ.J <thechairman@thechairman.info>2024-05-30 22:08:11 -0400
commitd3f51f8c1de71befbb3ac9fb4967a1f831c11a73 (patch)
treeeecd7403a5e6aa473fb3b8627679ccecda56d1af /aoc2019_gleam/test/aoc2019_gleam_test.gleam
parent612fd986ab1e00b6d34dc1937136250e08e89325 (diff)
downloadgleam_aoc-d3f51f8c1de71befbb3ac9fb4967a1f831c11a73.tar.gz
gleam_aoc-d3f51f8c1de71befbb3ac9fb4967a1f831c11a73.zip
gleam 2019 day 1
Diffstat (limited to 'aoc2019_gleam/test/aoc2019_gleam_test.gleam')
-rw-r--r--aoc2019_gleam/test/aoc2019_gleam_test.gleam12
1 files changed, 12 insertions, 0 deletions
diff --git a/aoc2019_gleam/test/aoc2019_gleam_test.gleam b/aoc2019_gleam/test/aoc2019_gleam_test.gleam
new file mode 100644
index 0000000..3831e7a
--- /dev/null
+++ b/aoc2019_gleam/test/aoc2019_gleam_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)
+}