initial commit

This commit is contained in:
Adam Mohammed
2023-05-30 13:55:28 -04:00
commit 1e6a5fa8a9
11 changed files with 301 additions and 0 deletions

View File

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

1
test/test_helper.exs Normal file
View File

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