9 lines
153 B
Elixir
9 lines
153 B
Elixir
defmodule SwapiExampleTest do
|
|
use ExUnit.Case
|
|
doctest SwapiExample
|
|
|
|
test "greets the world" do
|
|
assert SwapiExample.hello() == :world
|
|
end
|
|
end
|