blob: 4d42f10221350b3c8e209ce50f20294087f33483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
-module(expect).
-compile(no_auto_import).
-export([equal/2, not_equal/2, true/1, false/1, fail/0]).
equal(A, B) ->
gleam__stdlib:expect_equal(A, B).
not_equal(A, B) ->
gleam__stdlib:expect_not_equal(A, B).
true(A) ->
gleam__stdlib:expect_true(A).
false(A) ->
gleam__stdlib:expect_false(A).
fail() ->
true(false).
|