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