Files
setup-elixir/test-project/test/test_test.exs

10 lines
159 B
Elixir
Raw Permalink Normal View History

2019-08-28 00:00:01 -04:00
defmodule TestTest do
use ExUnit.Case
doctest Test
test "greets the world" do
out = Logfmt.encode(foo: "bar")
assert out == "foo=bar"
end
end