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