diff options
Diffstat (limited to '')
| -rw-r--r-- | stdlib/source/test/aedifex/cli.lux | 20 | 
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/test/aedifex/cli.lux b/stdlib/source/test/aedifex/cli.lux index b7be4e8bf..5dacd4f16 100644 --- a/stdlib/source/test/aedifex/cli.lux +++ b/stdlib/source/test/aedifex/cli.lux @@ -12,9 +12,9 @@      [parser       ["." cli]]]     [data -    ["." text ("#@." equivalence)]] +    ["." text ("#\." equivalence)]]     [math -    ["." random (#+ Random) ("#@." monad)]]] +    ["." random (#+ Random) ("#\." monad)]]]    {#program     ["." /      ["/#" // #_ @@ -23,20 +23,20 @@  (def: compilation    (Random /.Compilation) -  (random.or (random@wrap []) -             (random@wrap []))) +  (random.or (random\wrap []) +             (random\wrap [])))  (def: command    (Random /.Command)    ($_ random.or        ## #Clean -      (random@wrap []) +      (random\wrap [])        ## #POM -      (random@wrap []) +      (random\wrap [])        ## #Dependencies -      (random@wrap []) +      (random\wrap [])        ## #Install -      (random@wrap []) +      (random\wrap [])        ## #Deploy        ($_ random.and            (random.ascii/alpha 1) @@ -73,7 +73,7 @@                  ..format                  (cli.run /.command)                  (case> (#try.Success [name actual]) -                       (and (text@= //.default name) +                       (and (text\= //.default name)                              (:: /.equivalence = expected actual))                         (#try.Failure error) @@ -90,7 +90,7 @@                  (list& "with" expected-profile)                  (cli.run /.command)                  (case> (#try.Success [actual-profile actual-command]) -                       (and (text@= expected-profile actual-profile) +                       (and (text\= expected-profile actual-profile)                              (:: /.equivalence = expected-command actual-command))                         (#try.Failure error)  | 
