Initial commit.

This commit is contained in:
Lyle Mantooth 2020-12-21 23:24:07 -05:00
commit 005477d827
14 changed files with 274 additions and 0 deletions

View file

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

1
test/test_helper.exs Normal file
View file

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