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