10 lines
159 B
Elixir
10 lines
159 B
Elixir
defmodule TestTest do
|
|
use ExUnit.Case
|
|
doctest Test
|
|
|
|
test "greets the world" do
|
|
out = Logfmt.encode(foo: "bar")
|
|
assert out == "foo=bar"
|
|
end
|
|
end
|