mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-22 22:56:07 +00:00
14 lines
249 B
Elixir
14 lines
249 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
|
|
|
|
test "ensures ssl" do
|
|
assert {:ok, _} = Application.ensure_all_started(:ssl)
|
|
end
|
|
end
|