aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/collection.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-04-08 05:42:36 -0400
committerEduardo Julian2022-04-08 05:42:36 -0400
commit0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (patch)
treec50f12c5e47e3db90c3a701b54ee9953da942210 /stdlib/source/test/lux/data/collection.lux
parente5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (diff)
De-sigil-ification: $
Diffstat (limited to 'stdlib/source/test/lux/data/collection.lux')
-rw-r--r--stdlib/source/test/lux/data/collection.lux104
1 files changed, 52 insertions, 52 deletions
diff --git a/stdlib/source/test/lux/data/collection.lux b/stdlib/source/test/lux/data/collection.lux
index 686ccdacf..42c962e59 100644
--- a/stdlib/source/test/lux/data/collection.lux
+++ b/stdlib/source/test/lux/data/collection.lux
@@ -1,68 +1,68 @@
(.using
- [library
- [lux "*"
- ["_" test {"+" Test}]]]
- ["[0]" / "_"
- ["[1][0]" array]
- ["[1][0]" bits]
- ["[1][0]" list]
- ["[1][0]" sequence]
- ["[1][0]" stream]
- ["[1][0]" stack]
- ["[1][0]" dictionary
- ["[1]/[0]" ordered]
- ["[1]/[0]" plist]]
- ["[1][0]" queue
- ["[1]/[0]" priority]]
- ["[1][0]" set
- ["[1]/[0]" multi]
- ["[1]/[0]" ordered]]
- ["[1][0]" tree
- ["[1]/[0]" finger]
- ["[1]/[0]" zipper]]])
+ [library
+ [lux "*"
+ ["_" test {"+" Test}]]]
+ ["[0]" / "_"
+ ["[1][0]" array]
+ ["[1][0]" bits]
+ ["[1][0]" list]
+ ["[1][0]" sequence]
+ ["[1][0]" stream]
+ ["[1][0]" stack]
+ ["[1][0]" dictionary
+ ["[1]/[0]" ordered]
+ ["[1]/[0]" plist]]
+ ["[1][0]" queue
+ ["[1]/[0]" priority]]
+ ["[1][0]" set
+ ["[1]/[0]" multi]
+ ["[1]/[0]" ordered]]
+ ["[1][0]" tree
+ ["[1]/[0]" finger]
+ ["[1]/[0]" zipper]]])
(def: dictionary
Test
- ($_ _.and
- /dictionary.test
- /dictionary/ordered.test
- /dictionary/plist.test
- ))
+ (all _.and
+ /dictionary.test
+ /dictionary/ordered.test
+ /dictionary/plist.test
+ ))
(def: queue
Test
- ($_ _.and
- /queue.test
- /queue/priority.test
- ))
+ (all _.and
+ /queue.test
+ /queue/priority.test
+ ))
(def: set
Test
- ($_ _.and
- /set.test
- /set/multi.test
- /set/ordered.test
- ))
+ (all _.and
+ /set.test
+ /set/multi.test
+ /set/ordered.test
+ ))
(def: tree
Test
- ($_ _.and
- /tree.test
- /tree/finger.test
- /tree/zipper.test
- ))
+ (all _.and
+ /tree.test
+ /tree/finger.test
+ /tree/zipper.test
+ ))
(def: .public test
Test
- ($_ _.and
- /array.test
- /bits.test
- /list.test
- /sequence.test
- /stream.test
- /stack.test
- ..dictionary
- ..queue
- ..set
- ..tree
- ))
+ (all _.and
+ /array.test
+ /bits.test
+ /list.test
+ /sequence.test
+ /stream.test
+ /stack.test
+ ..dictionary
+ ..queue
+ ..set
+ ..tree
+ ))