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