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