aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command/build.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-08 17:56:15 -0400
committerEduardo Julian2021-08-08 17:56:15 -0400
commitf621a133e6e0a516c0586270fea8eaffb4829d82 (patch)
tree399396ee2f6a10df10cea9b78c51c76679b70e59 /stdlib/source/test/aedifex/command/build.lux
parent17e7566be51df5e428a6b10e6469201a8a9468da (diff)
No more #export magic syntax.
Diffstat (limited to 'stdlib/source/test/aedifex/command/build.lux')
-rw-r--r--stdlib/source/test/aedifex/command/build.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/aedifex/command/build.lux b/stdlib/source/test/aedifex/command/build.lux
index be7c8b55e..b5e796c2d 100644
--- a/stdlib/source/test/aedifex/command/build.lux
+++ b/stdlib/source/test/aedifex/command/build.lux
@@ -37,7 +37,7 @@
["#." dependency (#+ Dependency)
["#/." resolution (#+ Resolution)]]]]])
-(def: #export good_shell
+(def: .public good_shell
(-> Any (Shell IO))
(shell.mock
(function (_ [actual_environment actual_working_directory actual_command actual_arguments])
@@ -55,7 +55,7 @@
(def: (on_await state)
(#try.Success [state shell.normal]))))))))
-(def: #export bad_shell
+(def: .public bad_shell
(-> Any (Shell IO))
(shell.mock
(function (_ [actual_environment actual_working_directory actual_command actual_arguments])
@@ -73,7 +73,7 @@
(def: (on_await state)
(#try.Success [state shell.error]))))))))
-(def: #export (reader_shell error?)
+(def: .public (reader_shell error?)
(-> Bit (-> (List Text) (Shell IO)))
(shell.mock
(function (_ [actual_environment actual_working_directory actual_command actual_arguments])
@@ -127,7 +127,7 @@
[/.ruby_compiler_name]
))))))
-(def: #export resolution
+(def: .public resolution
(Random [Dependency Resolution])
(do random.monad
[dependency ..compiler
@@ -136,7 +136,7 @@
(|> ///dependency/resolution.empty
(dictionary.put dependency package))])))
-(def: #export test
+(def: .public test
Test
(<| (_.covering /._)
(do {! random.monad}