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