summaryrefslogtreecommitdiff
path: root/test/bahnhofname_test.gleam
diff options
context:
space:
mode:
authorstuebinm2023-04-26 00:53:24 +0200
committerstuebinm2023-04-26 01:34:01 +0200
commita827bb0e4d75f784f2cb26d664055c05810b096b (patch)
treead071aa370cd038432031ea7e3b60867ca87ab11 /test/bahnhofname_test.gleam
parent0e4119d3b9534eeaa53f5696e10f7dcee45e45c4 (diff)
url percent encoding & (naïve) fuzzy matching
Diffstat (limited to 'test/bahnhofname_test.gleam')
-rw-r--r--test/bahnhofname_test.gleam12
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)
+}