2024-10-13 01:50:00 +00:00
|
|
|
defmodule HttpTest do
|
2024-10-11 03:04:34 +00:00
|
|
|
use ExUnit.Case
|
2024-10-13 01:50:00 +00:00
|
|
|
doctest ElixirRss
|
2024-10-11 03:04:34 +00:00
|
|
|
|
|
|
|
test "fetch url" do
|
2024-10-13 01:50:00 +00:00
|
|
|
assert ElixirRss.Http.fetch("https://shillerben.com") |> elem(0) == :ok
|
2024-10-11 03:04:34 +00:00
|
|
|
end
|
|
|
|
end
|