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