docker_examples/elixir/test/example_test.exs
2022-07-29 01:12:01 +02:00

8 lines
138 B
Elixir

defmodule ExampleTest do
use ExUnit.Case
doctest Example
test "greets the world" do
assert Example.hello() == :world
end
end