This commit is contained in:
Gavin McDonald
2018-11-11 14:54:41 -05:00
commit 921b2a603d
13 changed files with 475 additions and 0 deletions

8
test/ex_mine_test.exs Normal file
View File

@@ -0,0 +1,8 @@
defmodule ExMineTest do
use ExUnit.Case
doctest ExMine
test "greets the world" do
assert ExMine.hello() == :world
end
end

1
test/test_helper.exs Normal file
View File

@@ -0,0 +1 @@
ExUnit.start()