First commit

This commit is contained in:
2020-04-20 18:18:51 +03:00
parent a14860401e
commit b45a818fa4
21 changed files with 363 additions and 0 deletions

1
test/test_helper.exs Normal file
View File

@@ -0,0 +1 @@
ExUnit.start()

8
test/translator_test.exs Normal file
View File

@@ -0,0 +1,8 @@
defmodule TranslatorTest do
use ExUnit.Case
doctest Translator
test "greets the world" do
assert Translator.hello() == :world
end
end