11 lines
141 B
Elixir
11 lines
141 B
Elixir
ExUnit.start
|
|
|
|
defmodule AssertionTest do
|
|
use ExUnit.Case
|
|
|
|
def return_5, do: 5
|
|
|
|
test "not equal" do
|
|
assert 42 == return_5
|
|
end
|
|
end
|