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