aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/strings/strings_test.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/strings/strings_test.v')
-rw-r--r--v_windows/v/old/vlib/strings/strings_test.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/strings/strings_test.v b/v_windows/v/old/vlib/strings/strings_test.v
new file mode 100644
index 0000000..ff5ddf5
--- /dev/null
+++ b/v_windows/v/old/vlib/strings/strings_test.v
@@ -0,0 +1,14 @@
+import strings
+
+fn test_repeat() {
+ assert strings.repeat(`x`, 10) == 'xxxxxxxxxx'
+ assert strings.repeat(`a`, 1) == 'a'
+ assert strings.repeat(`a`, 0) == ''
+}
+
+fn test_repeat_string() {
+ assert strings.repeat_string('abc', 3) == 'abcabcabc'
+ assert strings.repeat_string('abc', 1) == 'abc'
+ assert strings.repeat_string('abc', 0) == ''
+ assert strings.repeat_string('', 200) == ''
+}