9 lines
129 B
Elixir
9 lines
129 B
Elixir
defmodule JumpTest do
|
|
use ExUnit.Case
|
|
doctest Jump
|
|
|
|
test "greets the world" do
|
|
assert Jump.hello() == :world
|
|
end
|
|
end
|