Added very basic koans for integers

This commit is contained in:
Mahmut Surekci
2016-05-24 17:29:18 +01:00
parent 65553d966f
commit cc3232a31f
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
defmodule IntegerTests do
use ExUnit.Case
import TestHarness
test "Integers" do
answers = [
true,
false,
[5, 8, 1, 2, 7],
1234,
'7',
"1234",
]
test_all(Integers, answers)
end
end