This commit is contained in:
Emin Arslan
2025-02-16 19:14:35 +03:00
commit 1503ca4fab
9 changed files with 194 additions and 0 deletions

8
test/server_try_test.exs Normal file
View File

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

1
test/test_helper.exs Normal file
View File

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