aboutsummaryrefslogtreecommitdiff
path: root/src/gleam__stdlib.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/gleam__stdlib.erl')
-rw-r--r--src/gleam__stdlib.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gleam__stdlib.erl b/src/gleam__stdlib.erl
new file mode 100644
index 0000000..db80c1b
--- /dev/null
+++ b/src/gleam__stdlib.erl
@@ -0,0 +1,8 @@
+-module(gleam__stdlib).
+-compile(export_all).
+-include_lib("eunit/include/eunit.hrl").
+
+expect_equal(A, Expected) -> ?assertEqual(Expected, A).
+expect_not_equal(A, Expected) -> ?assertNotEqual(Expected, A).
+expect_true(A) -> ?assert(A).
+expect_false(A) -> ?assertNot(A).