From cb8a44d128f6205ba7811db4698ebcadd989205c Mon Sep 17 00:00:00 2001 From: Hayleigh Thompson Date: Sun, 20 Aug 2023 14:16:16 +0100 Subject: :sparkles: Scaffold docs site project. --- docs/test/docs_test.gleam | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/test/docs_test.gleam (limited to 'docs/test') diff --git a/docs/test/docs_test.gleam b/docs/test/docs_test.gleam new file mode 100644 index 0000000..3831e7a --- /dev/null +++ b/docs/test/docs_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