Add string interpolation koan. Fix #184
This commit is contained in:
@@ -7,6 +7,10 @@ defmodule Strings do
|
||||
assert "hello" == ___
|
||||
end
|
||||
|
||||
koan "Values may be inserted into strings by interpolation" do
|
||||
assert "1 + 1 = #{1 + 1}" == ___
|
||||
end
|
||||
|
||||
koan "They can be put together" do
|
||||
assert "hello world" == ___ <> "world"
|
||||
end
|
||||
|
@@ -5,6 +5,7 @@ defmodule StringTests do
|
||||
test "Strings" do
|
||||
answers = [
|
||||
"hello",
|
||||
"1 + 1 = 2",
|
||||
"hello ",
|
||||
"hello world",
|
||||
"An incredible day",
|
||||
|
Reference in New Issue
Block a user