Create a test file for each of the koan modules
This commit is contained in:
19
test/koans/tuples_koans_test.exs
Normal file
19
test/koans/tuples_koans_test.exs
Normal file
@@ -0,0 +1,19 @@
|
||||
defmodule TupleTests do
|
||||
use ExUnit.Case
|
||||
use TestHarness
|
||||
|
||||
test "Tuples" do
|
||||
answers = [
|
||||
{:a, 1, "hi"},
|
||||
3,
|
||||
"hi",
|
||||
{:a, "bye"},
|
||||
{:a, :new_thing, "hi"},
|
||||
{"Huey", "Dewey", "Louie"},
|
||||
{:this, :is, :awesome},
|
||||
[:this, :can, :be, :a, :list]
|
||||
]
|
||||
|
||||
test_all(Tuples, answers)
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user