21 lines
312 B
Elixir
21 lines
312 B
Elixir
defmodule StringTests do
|
|
use ExUnit.Case
|
|
import TestHarness
|
|
|
|
test "Strings" do
|
|
answers = [
|
|
"hello",
|
|
"hello ",
|
|
"hello world",
|
|
"An incredible day",
|
|
"incredible",
|
|
"banana",
|
|
"banana",
|
|
"String",
|
|
"listen",
|
|
]
|
|
|
|
test_all(Strings, answers)
|
|
end
|
|
end
|