aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/artifact/extension.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-12-10 00:15:15 -0400
committerEduardo Julian2020-12-10 00:15:15 -0400
commit14287585025b2d8fff1991691def9e643b039ac8 (patch)
tree4fdbe2aafa907d1dd0f47150c545adf3eabeb124 /stdlib/source/test/aedifex/artifact/extension.lux
parent893c76ad530ca0e81cd84602543c3114407f4592 (diff)
Re-named "with-cover" to "for".
Diffstat (limited to 'stdlib/source/test/aedifex/artifact/extension.lux')
-rw-r--r--stdlib/source/test/aedifex/artifact/extension.lux34
1 files changed, 17 insertions, 17 deletions
diff --git a/stdlib/source/test/aedifex/artifact/extension.lux b/stdlib/source/test/aedifex/artifact/extension.lux
index e098b0f9c..cd695ae93 100644
--- a/stdlib/source/test/aedifex/artifact/extension.lux
+++ b/stdlib/source/test/aedifex/artifact/extension.lux
@@ -20,21 +20,21 @@
(def: #export test
Test
(<| (_.covering /._)
- (_.with-cover [/.Extension]
- ($_ _.and
- (_.cover [/.lux-library /.jvm-library /.pom
- /.sha-1 /.md5]
- (let [options (list /.lux-library /.jvm-library /.pom /.sha-1 /.md5)
- uniques (set.from-list text.hash options)]
- (n.= (list.size options)
- (set.size uniques))))
- (_.cover [/.extension]
- (`` (and (~~ (template [<type> <extension>]
- [(text\= <extension>
- (/.extension <type>))]
+ (_.for [/.Extension]
+ ($_ _.and
+ (_.cover [/.lux-library /.jvm-library /.pom
+ /.sha-1 /.md5]
+ (let [options (list /.lux-library /.jvm-library /.pom /.sha-1 /.md5)
+ uniques (set.from-list text.hash options)]
+ (n.= (list.size options)
+ (set.size uniques))))
+ (_.cover [/.extension]
+ (`` (and (~~ (template [<type> <extension>]
+ [(text\= <extension>
+ (/.extension <type>))]
- [//.lux-library /.lux-library]
- [//.jvm-library /.jvm-library]
- [//.pom /.pom]
- )))))
- ))))
+ [//.lux-library /.lux-library]
+ [//.jvm-library /.jvm-library]
+ [//.pom /.pom]
+ )))))
+ ))))