translator/test/translator_test.exs
2020-04-20 18:18:51 +03:00

9 lines
147 B
Elixir

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