From 8ab65dc2da1742eb86ec636c50c7018385b68167 Mon Sep 17 00:00:00 2001 From: "J.J" Date: Thu, 30 Nov 2023 17:10:00 -0500 Subject: prep for 2023, renaming for consistency --- aoc2023/test/aoc2023_test.gleam | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 aoc2023/test/aoc2023_test.gleam (limited to 'aoc2023/test') diff --git a/aoc2023/test/aoc2023_test.gleam b/aoc2023/test/aoc2023_test.gleam new file mode 100644 index 0000000..3831e7a --- /dev/null +++ b/aoc2023/test/aoc2023_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