This commit is contained in:
Pim Kunis 2019-07-13 20:16:46 +02:00
commit 08c904ba12
57 changed files with 12621 additions and 0 deletions

View file

@ -0,0 +1,8 @@
defmodule FirmwareTest do
use ExUnit.Case
doctest Firmware
test "greets the world" do
assert Firmware.hello() == :world
end
end

View file

@ -0,0 +1 @@
ExUnit.start()