diff options
| author | 2025-04-21 15:53:23 +0200 | |
|---|---|---|
| committer | 2025-04-21 15:53:23 +0200 | |
| commit | 590b72e80e57fec2768ebc0162e60cf0e4571405 (patch) | |
| tree | 44637f5dad8ca9dda3f914f19c48251a189201a9 /test | |
Initial commit
Diffstat (limited to 'test')
| -rw-r--r-- | test/lithium_test.exs | 8 | ||||
| -rw-r--r-- | test/test_helper.exs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/lithium_test.exs b/test/lithium_test.exs new file mode 100644 index 0000000..e05c9c7 --- /dev/null +++ b/test/lithium_test.exs @@ -0,0 +1,8 @@ +defmodule LithiumTest do + use ExUnit.Case + doctest Lithium + + test "greets the world" do + assert Lithium.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() |