summaryrefslogtreecommitdiffstats
path: root/vendor/unarray/src/testing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/unarray/src/testing.rs')
-rw-r--r--vendor/unarray/src/testing.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/unarray/src/testing.rs b/vendor/unarray/src/testing.rs
new file mode 100644
index 000000000..f33ada9a8
--- /dev/null
+++ b/vendor/unarray/src/testing.rs
@@ -0,0 +1,12 @@
+use core::convert::TryInto;
+
+use proptest::collection::*;
+use proptest::prelude::*;
+
+pub fn array_strategy<const N: usize>() -> impl Strategy<Value = [String; N]> {
+ vec(any::<String>(), N).prop_map(|v| v.try_into().unwrap())
+}
+
+pub fn vec_strategy(n: usize) -> impl Strategy<Value = Vec<String>> {
+ vec(any::<String>(), n)
+}