aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/format/tar.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/data/format/tar.lux')
-rw-r--r--stdlib/source/test/lux/data/format/tar.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/test/lux/data/format/tar.lux b/stdlib/source/test/lux/data/format/tar.lux
index a858db473..01f8648c1 100644
--- a/stdlib/source/test/lux/data/format/tar.lux
+++ b/stdlib/source/test/lux/data/format/tar.lux
@@ -41,8 +41,8 @@
Test
(_.for [/.Path]
(do [! random.monad]
- [expected (random.lower_case /.path_size)
- invalid (random.lower_case (++ /.path_size))
+ [expected (random.lower_cased /.path_size)
+ invalid (random.lower_cased (++ /.path_size))
not_ascii (random.text (random.char (unicode.set [unicode/block.katakana (list)]))
/.path_size)]
(`` (all _.and
@@ -76,8 +76,8 @@
Test
(_.for [/.Name]
(do [! random.monad]
- [expected (random.lower_case /.name_size)
- invalid (random.lower_case (++ /.name_size))
+ [expected (random.lower_cased /.name_size)
+ invalid (random.lower_cased (++ /.name_size))
not_ascii (random.text (random.char (unicode.set [unicode/block.katakana (list)]))
/.name_size)]
(`` (all _.and
@@ -158,10 +158,10 @@
(def entry
Test
(do [! random.monad]
- [expected_path (random.lower_case (-- /.path_size))
+ [expected_path (random.lower_cased (-- /.path_size))
expected_moment (at ! each (|>> (n.% 1,0,00,00,00,00,000) .int instant.of_millis)
random.nat)
- chunk (random.lower_case chunk_size)
+ chunk (random.lower_cased chunk_size)
chunks (at ! each (n.% 100) random.nat)
.let [content (|> chunk
(list.repeated chunks)
@@ -244,7 +244,7 @@
Test
(_.for [/.Mode /.mode]
(do [! random.monad]
- [path (random.lower_case 10)
+ [path (random.lower_cased 10)
modes (random.list 4 ..random_mode)
.let [expected_mode (list#mix /.and /.none modes)]]
(`` (all _.and
@@ -316,9 +316,9 @@
(def ownership
Test
(do [! random.monad]
- [path (random.lower_case /.path_size)
- expected (random.lower_case /.name_size)
- invalid (random.lower_case (++ /.name_size))
+ [path (random.lower_cased /.path_size)
+ expected (random.lower_cased /.name_size)
+ invalid (random.lower_cased (++ /.name_size))
not_ascii (random.text (random.char (unicode.set [unicode/block.katakana (list)]))
/.name_size)]
(_.for [/.Ownership /.Owner /.ID]