9 lines
138 B
Elixir
9 lines
138 B
Elixir
defmodule StorageTest do
|
|
use ExUnit.Case
|
|
doctest Storage
|
|
|
|
test "greets the world" do
|
|
assert Storage.hello() == :world
|
|
end
|
|
end
|