swapi_example/test/swapi_example_test.exs
2020-12-21 23:28:32 -05:00

9 lines
153 B
Elixir

defmodule SwapiExampleTest do
use ExUnit.Case
doctest SwapiExample
test "greets the world" do
assert SwapiExample.hello() == :world
end
end