aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/meta/version.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/meta/version.lux')
-rw-r--r--stdlib/source/test/lux/meta/version.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/test/lux/meta/version.lux b/stdlib/source/test/lux/meta/version.lux
index b5c2c0c97..00e1ac020 100644
--- a/stdlib/source/test/lux/meta/version.lux
+++ b/stdlib/source/test/lux/meta/version.lux
@@ -37,19 +37,19 @@
(<| (_.covering /._)
(with_expansions [<current> (/.current)
<fake> (static.random code.text (random.ascii/lower 1))])
- ($_ _.and
- (_.cover [/.latest]
- (n.> 0 /.latest))
- (_.cover [/.current]
- (not (text.empty? (/.current))))
- (_.cover [/.for]
- (and (/.for <current> true
- false)
- (/.for <fake> false
- true)))
- (_.cover [/.invalid]
- (and (text.contains? (the exception.#label /.invalid)
- (..failure (/.for)))
- (text.contains? (the exception.#label /.invalid)
- (..failure (/.for <fake> false)))))
- )))
+ (all _.and
+ (_.cover [/.latest]
+ (n.> 0 /.latest))
+ (_.cover [/.current]
+ (not (text.empty? (/.current))))
+ (_.cover [/.for]
+ (and (/.for <current> true
+ false)
+ (/.for <fake> false
+ true)))
+ (_.cover [/.invalid]
+ (and (text.contains? (the exception.#label /.invalid)
+ (..failure (/.for)))
+ (text.contains? (the exception.#label /.invalid)
+ (..failure (/.for <fake> false)))))
+ )))