aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/cli.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/aedifex/cli.lux')
-rw-r--r--stdlib/source/test/aedifex/cli.lux56
1 files changed, 28 insertions, 28 deletions
diff --git a/stdlib/source/test/aedifex/cli.lux b/stdlib/source/test/aedifex/cli.lux
index 3f3f79b1c..4d577e737 100644
--- a/stdlib/source/test/aedifex/cli.lux
+++ b/stdlib/source/test/aedifex/cli.lux
@@ -29,26 +29,26 @@
(def: command
(Random /.Command)
- ($_ random.or
- ... #Version
- (random#in [])
- ... #Clean
- (random#in [])
- ... #POM
- (random#in [])
- ... #Dependencies
- (random#in [])
- ... #Install
- (random#in [])
- ... #Deploy
- ($_ random.and
- (random.ascii/alpha 1)
- (random.ascii/alpha 1)
- (random.ascii/alpha 1))
- ... #Compilation
- ..compilation
- ... #Auto
- ..compilation))
+ (all random.or
+ ... #Version
+ (random#in [])
+ ... #Clean
+ (random#in [])
+ ... #POM
+ (random#in [])
+ ... #Dependencies
+ (random#in [])
+ ... #Install
+ (random#in [])
+ ... #Deploy
+ (all random.and
+ (random.ascii/alpha 1)
+ (random.ascii/alpha 1)
+ (random.ascii/alpha 1))
+ ... #Compilation
+ ..compilation
+ ... #Auto
+ ..compilation))
(def: (compilation_format value)
(-> /.Compilation (List Text))
@@ -106,12 +106,12 @@
Test
(<| (_.covering /._)
(_.for [/.Compilation /.Command]
- ($_ _.and
- (_.for [/.equivalence]
- ($equivalence.spec /.equivalence ..command))
+ (all _.and
+ (_.for [/.equivalence]
+ ($equivalence.spec /.equivalence ..command))
- (_.for [/.command]
- ($_ _.and
- ..without_profile
- ..with_profile
- ))))))
+ (_.for [/.command]
+ (all _.and
+ ..without_profile
+ ..with_profile
+ ))))))