Remove 'I think I need my number as a char' koan. Fix #176

This commit is contained in:
Tom Gurion
2017-04-09 10:40:27 +01:00
parent f29a46796b
commit 1a6449ff1f
2 changed files with 0 additions and 7 deletions

View File

@@ -23,12 +23,6 @@ defmodule Numbers do
assert number == ___ assert number == ___
end end
koan "I think I need my number as a char" do
char_digit = Integer.to_char_list(7)
assert char_digit == ___
end
koan "Actually I want my number as a string" do koan "Actually I want my number as a string" do
string_digit = Integer.to_string(1234) string_digit = Integer.to_string(1234)

View File

@@ -8,7 +8,6 @@ defmodule NumbersTests do
true, true,
[5, 8, 1, 2, 7], [5, 8, 1, 2, 7],
1234, 1234,
'7',
"1234", "1234",
42, 42,
" years", " years",