diff options
Diffstat (limited to '')
4 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/test/aedifex/dependency.lux b/stdlib/source/test/aedifex/dependency.lux index 733e15710..86d951f99 100644 --- a/stdlib/source/test/aedifex/dependency.lux +++ b/stdlib/source/test/aedifex/dependency.lux @@ -15,13 +15,13 @@    [\\program     ["." /]]) -(def: #export random +(def: .public random    (Random /.Dependency)    ($_ random.and        @artifact.random        (random.ascii/alpha 1))) -(def: #export test +(def: .public test    Test    (<| (_.covering /._)        (_.for [/.Dependency] diff --git a/stdlib/source/test/aedifex/dependency/deployment.lux b/stdlib/source/test/aedifex/dependency/deployment.lux index 8c1e2e61a..ec2ecad3d 100644 --- a/stdlib/source/test/aedifex/dependency/deployment.lux +++ b/stdlib/source/test/aedifex/dependency/deployment.lux @@ -143,7 +143,7 @@                            artifact/type.lux_library])]]      (in [dependency artifact package]))) -(def: #export test +(def: .public test    Test    (<| (_.covering /._)        (do {! random.monad} diff --git a/stdlib/source/test/aedifex/dependency/resolution.lux b/stdlib/source/test/aedifex/dependency/resolution.lux index 89e16691d..01b57eb62 100644 --- a/stdlib/source/test/aedifex/dependency/resolution.lux +++ b/stdlib/source/test/aedifex/dependency/resolution.lux @@ -86,7 +86,7 @@         (\ ///hash.md5_codec encode)         (\ utf8.codec encode))) -(def: #export nope +(def: .public nope    (Mock Any)    (implementation     (def: the_description @@ -96,7 +96,7 @@     (def: (on_upload uri binary state)       (#try.Failure "NOPE")))) -(def: #export (single artifact package) +(def: .public (single artifact package)    (-> Artifact Package (Mock Any))    (let [expected (///artifact.uri (get@ #///artifact.version artifact) artifact)]      (implementation @@ -427,7 +427,7 @@                               (not (dictionary.key? resolution ignored))))))          ))) -(def: #export test +(def: .public test    Test    (<| (_.covering /._)        (_.for [/.Resolution]) diff --git a/stdlib/source/test/aedifex/dependency/status.lux b/stdlib/source/test/aedifex/dependency/status.lux index 5b446d643..aad21027d 100644 --- a/stdlib/source/test/aedifex/dependency/status.lux +++ b/stdlib/source/test/aedifex/dependency/status.lux @@ -18,7 +18,7 @@      ["//#" /// #_       ["#." hash]]]]) -(def: #export random +(def: .public random    (Random /.Status)    ($_ random.or        (random\in []) @@ -28,7 +28,7 @@                    ($///hash.random ///hash.md5))        )) -(def: #export test +(def: .public test    Test    (<| (_.covering /._)        (_.for [/.Status]  | 
