This commit is contained in:
Gavin McDonald
2018-11-11 11:27:25 -05:00
commit 5e537d6895
9 changed files with 191 additions and 0 deletions

View File

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

1
test/test_helper.exs Normal file
View File

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