Files
elixir-koans/test/display/intro_test.exs
2016-05-15 01:58:57 +02:00

14 lines
275 B
Elixir

defmodule IntroTest do
use ExUnit.Case
alias Display.Intro
test "module not visited yet" do
assert Intro.intro(SampleKoan, []) == "There is something\n\n"
end
test "module has been visited" do
assert Intro.intro(SampleKoan, [SampleKoan]) == ""
end
end