diff options
author | stuebinm | 2023-04-26 00:53:24 +0200 |
---|---|---|
committer | stuebinm | 2023-04-26 01:34:01 +0200 |
commit | a827bb0e4d75f784f2cb26d664055c05810b096b (patch) | |
tree | ad071aa370cd038432031ea7e3b60867ca87ab11 /test | |
parent | 0e4119d3b9534eeaa53f5696e10f7dcee45e45c4 (diff) |
url percent encoding & (naïve) fuzzy matching
Diffstat (limited to 'test')
-rw-r--r-- | test/bahnhofname_test.gleam | 12 |
1 files changed, 12 insertions, 0 deletions
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) +} |