aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/name.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/data/name.lux')
-rw-r--r--stdlib/source/test/lux/data/name.lux26
1 files changed, 13 insertions, 13 deletions
diff --git a/stdlib/source/test/lux/data/name.lux b/stdlib/source/test/lux/data/name.lux
index dd9171e99..76761b0ae 100644
--- a/stdlib/source/test/lux/data/name.lux
+++ b/stdlib/source/test/lux/data/name.lux
@@ -12,7 +12,7 @@
[control
pipe]
[data
- ["[0]" text ("[1]\[0]" equivalence)]]
+ ["[0]" text ("[1]#[0]" equivalence)]]
[math
["[0]" random {"+" [Random]}]
[number
@@ -30,12 +30,12 @@
(<| (_.covering /._)
(do [! random.monad]
[... First Name
- sizeM1 (|> random.nat (\ ! each (n.% 100)))
- sizeS1 (|> random.nat (\ ! each (|>> (n.% 100) (n.max 1))))
+ sizeM1 (|> random.nat (# ! each (n.% 100)))
+ sizeS1 (|> random.nat (# ! each (|>> (n.% 100) (n.max 1))))
(^@ name1 [module1 short1]) (..random sizeM1 sizeS1)
... Second Name
- sizeM2 (|> random.nat (\ ! each (n.% 100)))
- sizeS2 (|> random.nat (\ ! each (|>> (n.% 100) (n.max 1))))
+ sizeM2 (|> random.nat (# ! each (n.% 100)))
+ sizeS2 (|> random.nat (# ! each (|>> (n.% 100) (n.max 1))))
(^@ name2 [module2 short2]) (..random sizeM2 sizeS2)]
(_.for [.Name]
($_ _.and
@@ -43,27 +43,27 @@
($equivalence.spec /.equivalence (..random sizeM1 sizeS1)))
(_.for [/.hash]
(|> (random.ascii 1)
- (\ ! each (|>> [""]))
+ (# ! each (|>> [""]))
($hash.spec /.hash)))
(_.for [/.order]
($order.spec /.order (..random sizeM1 sizeS1)))
(_.for [/.codec]
(_.and ($codec.spec /.equivalence /.codec (..random sizeM1 sizeS1))
- (let [(^open "/\[0]") /.codec]
+ (let [(^open "/#[0]") /.codec]
(_.test "Encoding an name without a module component results in text equal to the short of the name."
(if (text.empty? module1)
- (text\= short1 (/\encoded name1))
+ (text#= short1 (/#encoded name1))
#1)))))
(_.cover [/.module /.short]
(and (same? module1 (/.module name1))
(same? short1 (/.short name1))))
(_.for [.name_of]
- (let [(^open "/\[0]") /.equivalence]
+ (let [(^open "/#[0]") /.equivalence]
($_ _.and
(_.test "Can obtain Name from identifier."
- (and (/\= [.prelude_module "yolo"] (.name_of .yolo))
- (/\= ["test/lux/data/name" "yolo"] (.name_of ..yolo))
- (/\= ["" "yolo"] (.name_of yolo))
- (/\= ["library/lux/test" "yolo"] (.name_of library/lux/test.yolo)))))))
+ (and (/#= [.prelude_module "yolo"] (.name_of .yolo))
+ (/#= ["test/lux/data/name" "yolo"] (.name_of ..yolo))
+ (/#= ["" "yolo"] (.name_of yolo))
+ (/#= ["library/lux/test" "yolo"] (.name_of library/lux/test.yolo)))))))
)))))