aboutsummaryrefslogtreecommitdiff
path: root/gen/expect.erl
blob: 2152c4ff58bebbf52caa38a1816f2b475de08332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-module(expect).

-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).