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