swapi_example/test/swapi_example_test.exs

9 lines
153 B
Elixir
Raw Permalink Normal View History

2020-12-21 23:24:07 -05:00
defmodule SwapiExampleTest do
use ExUnit.Case
doctest SwapiExample
test "greets the world" do
assert SwapiExample.hello() == :world
end
end