9 lines
187 B
Elixir
9 lines
187 B
Elixir
|
defmodule ElixirRss.FetchTest do
|
||
|
use ExUnit.Case
|
||
|
doctest ElixirRss.Fetch
|
||
|
|
||
|
test "fetch url" do
|
||
|
assert ElixirRss.Fetch.fetch("https://shillerben.com") |> elem(0) == :ok
|
||
|
end
|
||
|
end
|