From d3f51f8c1de71befbb3ac9fb4967a1f831c11a73 Mon Sep 17 00:00:00 2001 From: "J.J" Date: Thu, 30 May 2024 22:08:11 -0400 Subject: gleam 2019 day 1 --- aoc2019_gleam/test/aoc2019_gleam_test.gleam | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 aoc2019_gleam/test/aoc2019_gleam_test.gleam (limited to 'aoc2019_gleam/test') 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) +} -- cgit v1.2.3