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