Create scrapper app

This commit is contained in:
2024-04-30 22:42:31 +02:00
parent 25293c298c
commit 072c5f85b8
8 changed files with 132 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
defmodule ScrapperTest do
use ExUnit.Case
doctest Scrapper
test "greets the world" do
assert Scrapper.hello() == :world
end
end
+1
View File
@@ -0,0 +1 @@
ExUnit.start()