Doing an example mix project

This commit is contained in:
2023-10-08 12:49:42 -04:00
parent 7e0aa3b86b
commit 4da817996d
8 changed files with 121 additions and 0 deletions

View File

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

View File

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