aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/command/build.lux
diff options
context:
space:
mode:
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}