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