index : pandoc | |
Hex package with a file-watcher and Mix task for using Pandoc to convert Markdown files to HTML. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'test/pandoc_test.exs')
-rw-r--r-- | test/pandoc_test.exs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pandoc_test.exs b/test/pandoc_test.exs new file mode 100644 index 0000000..1a4c067 --- /dev/null +++ b/test/pandoc_test.exs @@ -0,0 +1,8 @@ +defmodule PandocTest do + use ExUnit.Case + doctest Pandoc + + test "greets the world" do + assert Pandoc.hello() == :world + end +end |