diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-15 06:17:25 -0600 |
commit | a106c948c2056cb855ae6603842c5c165f03d716 (patch) | |
tree | a3b94b924ebf3d487ce3a14b7c1f1b3eae7b0610 /test | |
download | hope-a106c948c2056cb855ae6603842c5c165f03d716.tar.gz hope-a106c948c2056cb855ae6603842c5c165f03d716.zip |
initialize Elixir projectelixir
Diffstat (limited to 'test')
-rw-r--r-- | test/hope_test.exs | 8 | ||||
-rw-r--r-- | test/test_helper.exs | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/hope_test.exs b/test/hope_test.exs new file mode 100644 index 0000000..ac9a8d4 --- /dev/null +++ b/test/hope_test.exs @@ -0,0 +1,8 @@ +defmodule HopeTest do + use ExUnit.Case + doctest Hope + + test "greets the world" do + assert Hope.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() |