Files
elixir-koans/test/koans/integer_koans_test.exs
2016-05-24 19:43:00 +01:00

19 lines
245 B
Elixir

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