12 lines
213 B
Elixir
12 lines
213 B
Elixir
defmodule Scopes.DemoTest do
|
|
use ExUnit.Case, async: true
|
|
alias Scopes.Demo.Hello
|
|
doctest Hello
|
|
|
|
describe "hello:" do
|
|
test "greets the world" do
|
|
assert Hello.hello() == :world
|
|
end
|
|
end
|
|
end
|
|
|