aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/test.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/test.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/test.lux b/stdlib/source/library/lux/test.lux
index ee3604c0a..00ab760d3 100644
--- a/stdlib/source/library/lux/test.lux
+++ b/stdlib/source/library/lux/test.lux
@@ -125,7 +125,7 @@
async\in
random\in))
-(def: #export (assert message condition)
+(def: #export (assertion message condition)
{#.doc "Check that a condition is #1, and fail with the given message otherwise."}
(-> Text Bit Assertion)
(<| async\in
@@ -136,11 +136,11 @@
(def: #export (test message condition)
{#.doc "Check that a condition is #1, and fail with the given message otherwise."}
(-> Text Bit Test)
- (random\in (..assert message condition)))
+ (random\in (..assertion message condition)))
(def: #export (lift message random)
(-> Text (Random Bit) Test)
- (random\map (..assert message) random))
+ (random\map (..assertion message) random))
(def: pcg32_magic_inc
Nat
@@ -263,7 +263,7 @@
(list\map %.name)
(text.join_with " & "))
coverage (set.of_list name.hash coverage)]
- (|> (..assert message condition)
+ (|> (..assertion message condition)
(async\map (function (_ [tally documentation])
[(update@ #actual_coverage (set.union coverage) tally)
documentation])))))
@@ -390,7 +390,7 @@
output
(#try.Failure error)
- (..assert (exception.construct ..error_during_execution [error]) false))
+ (..assertion (exception.construct ..error_during_execution [error]) false))
io.io
async.future
async\join))