From a827bb0e4d75f784f2cb26d664055c05810b096b Mon Sep 17 00:00:00 2001 From: stuebinm Date: Wed, 26 Apr 2023 00:53:24 +0200 Subject: url percent encoding & (naïve) fuzzy matching --- test/bahnhofname_test.gleam | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/bahnhofname_test.gleam (limited to 'test') diff --git a/test/bahnhofname_test.gleam b/test/bahnhofname_test.gleam new file mode 100644 index 0000000..3831e7a --- /dev/null +++ b/test/bahnhofname_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