Initial commit

This commit is contained in:
2025-06-17 11:17:37 -07:00
commit 5a6a899365
8 changed files with 177 additions and 0 deletions

8
test/pandoc_test.exs Normal file
View File

@@ -0,0 +1,8 @@
defmodule PandocTest do
use ExUnit.Case
doctest Pandoc
test "greets the world" do
assert Pandoc.hello() == :world
end
end

1
test/test_helper.exs Normal file
View File

@@ -0,0 +1 @@
ExUnit.start()