Files
elixir-koans/test/executor_test.exs
Jay Hayes c894641106 Remove unneeded element from match
Maps support partial matching, no need to include a key for an unneeded
value.
2016-04-24 23:11:34 -05:00

14 lines
348 B
Elixir

defmodule ExecuteTest do
use ExUnit.Case
test "passes a koan" do
assert :passed == Execute.run_module(PassingKoan)
end
test "stops at the first failing koan" do
{:failed, %{file: file, line: line}, SampleKoan, _name} = Execute.run_module(SampleKoan)
assert file == 'test/support/sample_koan.ex'
assert line == 4
end
end