addressex/ex/test/addressex_test.exs

9 lines
144 B
Elixir
Raw Normal View History

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