Add some basic code

This commit is contained in:
2024-10-10 22:04:34 -05:00
parent 7f7a63f379
commit caa9a46c1b
10 changed files with 136 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
defmodule ElixirRssTest do
use ExUnit.Case
doctest ElixirRss
test "greets the world" do
assert ElixirRss.hello() == :world
end
end
+8
View File
@@ -0,0 +1,8 @@
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
+1
View File
@@ -0,0 +1 @@
ExUnit.start()