aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/collection.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-06-30 18:15:20 -0400
committerEduardo Julian2022-06-30 18:15:20 -0400
commit565fe5a2e60ff3c6b612031d1c3bb89f330751da (patch)
tree796bc98757276124102b2f65fe4afb04cca5bfd8 /stdlib/source/test/lux/data/collection.lux
parente853e9340d41724a86c9c0a837d86b2764bfcbab (diff)
Moved ".../dictionary/plist" to ".../list/property".
Diffstat (limited to 'stdlib/source/test/lux/data/collection.lux')
-rw-r--r--stdlib/source/test/lux/data/collection.lux18
1 files changed, 12 insertions, 6 deletions
diff --git a/stdlib/source/test/lux/data/collection.lux b/stdlib/source/test/lux/data/collection.lux
index 83351d7c1..f1fa1792e 100644
--- a/stdlib/source/test/lux/data/collection.lux
+++ b/stdlib/source/test/lux/data/collection.lux
@@ -1,17 +1,17 @@
(.require
[library
- [lux (.except)
+ [lux (.except list)
["_" test (.only Test)]]]
["[0]" /
["[1][0]" array]
["[1][0]" bits]
- ["[1][0]" list]
["[1][0]" sequence]
["[1][0]" stream]
["[1][0]" stack]
+ ["[1][0]" list (.only)
+ ["[1]/[0]" property]]
["[1][0]" dictionary (.only)
- ["[1]/[0]" ordered]
- ["[1]/[0]" plist]]
+ ["[1]/[0]" ordered]]
["[1][0]" queue (.only)
["[1]/[0]" priority]]
["[1][0]" set (.only)
@@ -21,12 +21,18 @@
["[1]/[0]" finger]
["[1]/[0]" zipper]]])
+(def list
+ Test
+ (all _.and
+ /list.test
+ /list/property.test
+ ))
+
(def dictionary
Test
(all _.and
/dictionary.test
/dictionary/ordered.test
- /dictionary/plist.test
))
(def queue
@@ -57,10 +63,10 @@
(all _.and
/array.test
/bits.test
- /list.test
/sequence.test
/stream.test
/stack.test
+ ..list
..dictionary
..queue
..set