Files
elixir-koans/test/runner_test.exs
2017-07-20 10:01:29 +01:00

10 lines
183 B
Elixir

defmodule RunnerTest do
use ExUnit.Case, async: true
test "path to number" do
path = "lib/koans/01_just_an_example.ex"
assert Runner.path_to_number(path) == 1
end
end