22 lines
342 B
Elixir
22 lines
342 B
Elixir
defmodule StringTests do
|
|
use ExUnit.Case
|
|
import TestHarness
|
|
|
|
test "Strings" do
|
|
answers = [
|
|
"hello",
|
|
"1 + 1 = 2",
|
|
"hello ",
|
|
"hello world",
|
|
"An incredible day",
|
|
"incredible",
|
|
"banana",
|
|
"banana",
|
|
"StringStringString",
|
|
"LISTEN"
|
|
]
|
|
|
|
test_all(Strings, answers)
|
|
end
|
|
end
|