Files
elixir-koans/test/runner_test.exs
2018-05-22 21:46:54 +01:00

9 lines
182 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