aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-11-04 12:16:57 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2025-11-04 12:16:57 +0100
commit24570e7bf215c79a55927f23a6735acd8cd0ff59 (patch)
tree9f04002e7d51a10c89a15fad97d4bf07a49ffd40 /test
Initial commit
Diffstat (limited to 'test')
-rw-r--r--test/elixir_math_parser_test.exs8
-rw-r--r--test/test_helper.exs1
2 files changed, 9 insertions, 0 deletions
diff --git a/test/elixir_math_parser_test.exs b/test/elixir_math_parser_test.exs
new file mode 100644
index 0000000..23f1048
--- /dev/null
+++ b/test/elixir_math_parser_test.exs
@@ -0,0 +1,8 @@
+defmodule ElixirMathParserTest do
+ use ExUnit.Case
+ doctest ElixirMathParser
+
+ test "greets the world" do
+ assert ElixirMathParser.hello() == :world
+ end
+end
diff --git a/test/test_helper.exs b/test/test_helper.exs
new file mode 100644
index 0000000..869559e
--- /dev/null
+++ b/test/test_helper.exs
@@ -0,0 +1 @@
+ExUnit.start()