aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data.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.lux
parente5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (diff)
De-sigil-ification: $
Diffstat (limited to 'stdlib/source/test/lux/data.lux')
-rw-r--r--stdlib/source/test/lux/data.lux48
1 files changed, 24 insertions, 24 deletions
diff --git a/stdlib/source/test/lux/data.lux b/stdlib/source/test/lux/data.lux
index 07ec343ce..dc85d5c14 100644
--- a/stdlib/source/test/lux/data.lux
+++ b/stdlib/source/test/lux/data.lux
@@ -31,40 +31,40 @@
(def: format
Test
- ($_ _.and
- /format/binary.test
- /format/json.test
- /format/tar.test
- /format/xml.test
- ))
+ (all _.and
+ /format/binary.test
+ /format/json.test
+ /format/tar.test
+ /format/xml.test
+ ))
(def: test/0
Test
- ($_ _.and
- /binary.test
- /bit.test
- /color.test
- /color/named.test))
+ (all _.and
+ /binary.test
+ /bit.test
+ /color.test
+ /color/named.test))
(def: test/1
Test
- ($_ _.and
- /identity.test))
+ (all _.and
+ /identity.test))
(def: test/2
Test
- ($_ _.and
- /product.test
- /sum.test
- /text.test))
+ (all _.and
+ /product.test
+ /sum.test
+ /text.test))
(def: .public test
Test
... TODO: Inline ASAP
- ($_ _.and
- (!bundle test/0)
- (!bundle test/1)
- (!bundle test/2)
- (!bundle ..format)
- (!bundle /collection.test)
- ))
+ (all _.and
+ (!bundle test/0)
+ (!bundle test/1)
+ (!bundle test/2)
+ (!bundle ..format)
+ (!bundle /collection.test)
+ ))