aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command/pom.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 15:39:55 -0400
committerEduardo Julian2021-09-12 15:39:55 -0400
commit2dbbaaec93a53f8dd0b96a0028b9cf125c9066cd (patch)
tree14bc8b5abe09b46ef005c3ff7cf132f1d98ddf0d /stdlib/source/test/aedifex/command/pom.lux
parentdda05bca0956af5e5b3875c4cc36e61aa04772e4 (diff)
Re-named \ => # && \\ => ##
Diffstat (limited to 'stdlib/source/test/aedifex/command/pom.lux')
-rw-r--r--stdlib/source/test/aedifex/command/pom.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/test/aedifex/command/pom.lux b/stdlib/source/test/aedifex/command/pom.lux
index 76cdf8b02..47456bdba 100644
--- a/stdlib/source/test/aedifex/command/pom.lux
+++ b/stdlib/source/test/aedifex/command/pom.lux
@@ -5,12 +5,12 @@
[abstract
[monad {"+" [do]}]]
[control
- ["[0]" try ("[1]\[0]" functor)]
+ ["[0]" try ("[1]#[0]" functor)]
[concurrency
["[0]" async]]]
[data
- ["[0]" binary ("[1]\[0]" equivalence)]
- ["[0]" text ("[1]\[0]" equivalence)
+ ["[0]" binary ("[1]#[0]" equivalence)]
+ ["[0]" text ("[1]#[0]" equivalence)
[encoding
["[0]" utf8]]]
[format
@@ -35,7 +35,7 @@
(<| (_.covering /._)
(do random.monad
[sample @profile.random
- .let [fs (file.mock (\ file.default separator))]]
+ .let [fs (file.mock (# file.default separator))]]
(in (do [! async.monad]
[.let [console (@version.echo "")]
outcome (/.do! console fs sample)]
@@ -44,17 +44,17 @@
(do !
[verdict (do ///action.monad
[expected (|> (///pom.write sample)
- (try\each (|>> (\ xml.codec encoded)
- (\ utf8.codec encoded)))
- (\ ! in))
- actual (\ fs read ///pom.file)
+ (try#each (|>> (# xml.codec encoded)
+ (# utf8.codec encoded)))
+ (# ! in))
+ actual (# fs read ///pom.file)
- logging! (\ ///action.monad each
- (text\= /.success)
- (\ console read_line []))
+ logging! (# ///action.monad each
+ (text#= /.success)
+ (# console read_line []))
.let [expected_content!
- (binary\= expected actual)]]
+ (binary#= expected actual)]]
(in (and logging!
expected_content!)))]
(_.cover' [/.do! /.success]