9 lines
141 B
Elixir
9 lines
141 B
Elixir
|
defmodule FirmwareTest do
|
||
|
use ExUnit.Case
|
||
|
doctest Firmware
|
||
|
|
||
|
test "greets the world" do
|
||
|
assert Firmware.hello() == :world
|
||
|
end
|
||
|
end
|