summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js b/js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js
new file mode 100644
index 0000000000..848bd5417a
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/prototype/repeat/empty-string-returns-empty.js
@@ -0,0 +1,21 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 21.1.3.13
+description: >
+ An empty repeated n times will return an empty string.
+info: |
+ 21.1.3.13 String.prototype.repeat ( count )
+
+ 8. Let T be a String value that is made from n copies of S appended together.
+ If n is 0, T is the empty String.
+ 9. Return T.
+---*/
+
+assert.sameValue(''.repeat(1), '', '"".repeat(1)');
+assert.sameValue(''.repeat(3), '', '"".repeat(3)');
+
+var maxSafe32bitInt = 2147483647;
+assert.sameValue(''.repeat(maxSafe32bitInt), '', '"".repeat(maxSafe32bitInt)');
+
+reportCompare(0, 0);