aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/specification/lux/world/file.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/specification/lux/world/file.lux')
-rw-r--r--stdlib/source/specification/lux/world/file.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/source/specification/lux/world/file.lux b/stdlib/source/specification/lux/world/file.lux
index b70555b6f..648449050 100644
--- a/stdlib/source/specification/lux/world/file.lux
+++ b/stdlib/source/specification/lux/world/file.lux
@@ -66,7 +66,7 @@
made? (at fs make_directory parent)
directory_post! (at fs directory? parent)]
(in (and (not directory_pre!)
- (case made?
+ (when made?
{try.#Success _} true
{try.#Failure _} false)
directory_post!))))
@@ -78,7 +78,7 @@
made? (at fs write path content)
file_post! (at fs file? path)]
(in (and (not file_pre!)
- (case made?
+ (when made?
{try.#Success _} true
{try.#Failure _} false)
file_post!))))
@@ -235,20 +235,20 @@
(and (not pre_dir/0)
(not pre_dir/1)
(not pre_dir/2)
- (case made?
+ (when made?
{try.#Success _} true
{try.#Failure _} false)
post_dir/0
post_dir/1
post_dir/2))
(unit.coverage [/.cannot_make_directory]
- (and (case cannot_make_directory!/0
+ (and (when cannot_make_directory!/0
{try.#Success _}
false
{try.#Failure error}
(exception.match? /.cannot_make_directory error))
- (case cannot_make_directory!/1
+ (when cannot_make_directory!/1
{try.#Success _}
false
@@ -267,11 +267,11 @@
make_file!/1 (/.make_file ! fs (utf8#encoded file/0) file/0)])
(all unit.and
(unit.coverage [/.make_file]
- (case make_file!/0
+ (when make_file!/0
{try.#Success _} true
{try.#Failure error} false))
(unit.coverage [/.cannot_make_file]
- (case make_file!/1
+ (when make_file!/1
{try.#Success _}
false
@@ -314,10 +314,10 @@
(not pre_dir/0)
(not pre_dir/1)
- (case made_file?
+ (when made_file?
{try.#Success _} true
{try.#Failure _} false)
- (case made_dir?
+ (when made_dir?
{try.#Success _} true
{try.#Failure _} false)