From 2d62a6df1f0d574bd00420546e4035bf71109917 Mon Sep 17 00:00:00 2001 From: smikes Date: Wed, 12 Nov 2014 13:13:04 -0700 Subject: [PATCH] remove email attribute remove spec attribute remove assertion, section, name --- test/suite/ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A3.js | 3 --- test/suite/es6/Math.clz32/Math.clz32.js | 1 - test/suite/es6/Math.clz32/Math.clz32_1.js | 1 - test/suite/es6/Math.clz32/Math.clz32_2.js | 1 - test/suite/es6/Math.fround/Math.fround_Infinity.js | 2 -- test/suite/es6/Math.fround/Math.fround_NaN.js | 2 -- test/suite/es6/Math.fround/Math.fround_Zero.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_Infinity.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_InfinityNaN.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_NaN.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_NegInfinity.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_NoArgs.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_Success.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_Success_2.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_Zero_2.js | 2 -- test/suite/es6/Math.hypot/Math.hypot_lengthProp.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_Infinity.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_NaN.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_NegDecimal.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_PosDecimal.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_Success.js | 2 -- test/suite/es6/Math.trunc/Math.trunc_Zero.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_Double.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_Infinity.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_NaN.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_NonNumber.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_String.js | 2 -- test/suite/es6/Number.isInteger/Number.isInteger_Success.js | 2 -- test/suite/es6/Number.isNaN/Number.isNaN_Boolean.js | 2 -- test/suite/es6/Number.isNaN/Number.isNaN_NaN.js | 2 -- test/suite/es6/Number.isNaN/Number.isNaN_Object.js | 2 -- test/suite/es6/Number.isNaN/Number.isNaN_String.js | 2 -- .../String.prototype.contains_FailBadLocation.js | 2 -- .../String.prototype.contains_FailLocation.js | 2 -- .../String.prototype.contains_FailMissingLetter.js | 2 -- .../String.prototype.contains_Success.js | 2 -- .../String.prototype.contains_SuccessNoLocation.js | 2 -- .../String.prototype.contains_lengthProp.js | 2 -- .../String.prototype.endsWith_Fail.js | 2 -- .../String.prototype.endsWith_Fail_2.js | 2 -- .../String.prototype.endsWith_Success.js | 2 -- .../String.prototype.endsWith_Success_2.js | 2 -- .../String.prototype.endsWith_Success_3.js | 2 -- .../String.prototype.endsWith_Success_4.js | 2 -- 44 files changed, 86 deletions(-) diff --git a/test/suite/ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A3.js b/test/suite/ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A3.js index 876b524d3e..e069f594e3 100644 --- a/test/suite/ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A3.js +++ b/test/suite/ch15/15.2/15.2.3/15.2.3.1/S15.2.3.1_A3.js @@ -3,9 +3,6 @@ /*--- es5id: 15.2.3.1_A3 -name: S15.2.3.1_A3; -section: 15.2.3.1, 15.2.4; -assertion: The Object.prototype property has the attribute DontDelete; description: Checking if deleting "Object.prototype" property fails; flags: [noStrict] ---*/ diff --git a/test/suite/es6/Math.clz32/Math.clz32.js b/test/suite/es6/Math.clz32/Math.clz32.js index e78ab1b994..17081cb6df 100644 --- a/test/suite/es6/Math.clz32/Math.clz32.js +++ b/test/suite/es6/Math.clz32/Math.clz32.js @@ -6,7 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com description: Math.clz32 should return 32 if passed 0. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.clz32/Math.clz32_1.js b/test/suite/es6/Math.clz32/Math.clz32_1.js index 46471c5b68..010669b311 100644 --- a/test/suite/es6/Math.clz32/Math.clz32_1.js +++ b/test/suite/es6/Math.clz32/Math.clz32_1.js @@ -6,7 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com description: Math.clz32 should return 31 if passed 1. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.clz32/Math.clz32_2.js b/test/suite/es6/Math.clz32/Math.clz32_2.js index fe12973a0c..d213eafe4a 100644 --- a/test/suite/es6/Math.clz32/Math.clz32_2.js +++ b/test/suite/es6/Math.clz32/Math.clz32_2.js @@ -6,7 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com description: Math.clz32 should return 0 if passed 2147483648 includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.fround/Math.fround_Infinity.js b/test/suite/es6/Math.fround/Math.fround_Infinity.js index 8cf240b82e..d54d635d17 100644 --- a/test/suite/es6/Math.fround/Math.fround_Infinity.js +++ b/test/suite/es6/Math.fround/Math.fround_Infinity.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.fround" description: Math.fround should return Infinity if called with Infinity. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.fround/Math.fround_NaN.js b/test/suite/es6/Math.fround/Math.fround_NaN.js index 783ef78e30..aa6f1cf3fe 100644 --- a/test/suite/es6/Math.fround/Math.fround_NaN.js +++ b/test/suite/es6/Math.fround/Math.fround_NaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.fround" description: Math.fround should return NaN if called with NaN. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.fround/Math.fround_Zero.js b/test/suite/es6/Math.fround/Math.fround_Zero.js index 4e1514e0f2..b314b57c56 100644 --- a/test/suite/es6/Math.fround/Math.fround_Zero.js +++ b/test/suite/es6/Math.fround/Math.fround_Zero.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.froun" description: Math.fround should return 0 if called with 0. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.hypot/Math.hypot_Infinity.js b/test/suite/es6/Math.hypot/Math.hypot_Infinity.js index 1a3f7efb87..ebbe2bb4ab 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_Infinity.js +++ b/test/suite/es6/Math.hypot/Math.hypot_Infinity.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: > Math.hypot should return Infinity if called with any argument that is Infinity. diff --git a/test/suite/es6/Math.hypot/Math.hypot_InfinityNaN.js b/test/suite/es6/Math.hypot/Math.hypot_InfinityNaN.js index 262c73243d..568f33f0b0 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_InfinityNaN.js +++ b/test/suite/es6/Math.hypot/Math.hypot_InfinityNaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: > Math.hypot should return Infinity if called with any argument that is Infinity. diff --git a/test/suite/es6/Math.hypot/Math.hypot_NaN.js b/test/suite/es6/Math.hypot/Math.hypot_NaN.js index 50e7c3bb5c..d41fb1730e 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_NaN.js +++ b/test/suite/es6/Math.hypot/Math.hypot_NaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: > Math.hypot should return NaN if called with any argument that is NaN. diff --git a/test/suite/es6/Math.hypot/Math.hypot_NegInfinity.js b/test/suite/es6/Math.hypot/Math.hypot_NegInfinity.js index 4837e0434b..3ba99708c3 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_NegInfinity.js +++ b/test/suite/es6/Math.hypot/Math.hypot_NegInfinity.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: > Math.hypot should return Infinity if called with any argument that is -Infinity. diff --git a/test/suite/es6/Math.hypot/Math.hypot_NoArgs.js b/test/suite/es6/Math.hypot/Math.hypot_NoArgs.js index 3d2a5e025e..6150777095 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_NoArgs.js +++ b/test/suite/es6/Math.hypot/Math.hypot_NoArgs.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: Math.hypot should return 0 if called with no arguments. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.hypot/Math.hypot_Success.js b/test/suite/es6/Math.hypot/Math.hypot_Success.js index 70ae769049..da4ba3b24a 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_Success.js +++ b/test/suite/es6/Math.hypot/Math.hypot_Success.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: Math.hypot should return 4 if called with 3 and 2.6457513110645907. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.hypot/Math.hypot_Success_2.js b/test/suite/es6/Math.hypot/Math.hypot_Success_2.js index e4c34e7e14..e80842eed8 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_Success_2.js +++ b/test/suite/es6/Math.hypot/Math.hypot_Success_2.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: Math.hypot should return 5 if called with 3 and 4. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.hypot/Math.hypot_Zero_2.js b/test/suite/es6/Math.hypot/Math.hypot_Zero_2.js index f60f40a842..c5eb3c290a 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_Zero_2.js +++ b/test/suite/es6/Math.hypot/Math.hypot_Zero_2.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: Math.hypot should return 0 if called with all arguments being 0. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.hypot/Math.hypot_lengthProp.js b/test/suite/es6/Math.hypot/Math.hypot_lengthProp.js index 77a3280b94..cb363be0b0 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_lengthProp.js +++ b/test/suite/es6/Math.hypot/Math.hypot_lengthProp.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot" description: Math.hypot.length should return 2. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_Infinity.js b/test/suite/es6/Math.trunc/Math.trunc_Infinity.js index 79af4aa089..99ecf4c57e 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_Infinity.js +++ b/test/suite/es6/Math.trunc/Math.trunc_Infinity.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return Infinity when called with Infinity. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_NaN.js b/test/suite/es6/Math.trunc/Math.trunc_NaN.js index 102657f009..c2b1a06c02 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_NaN.js +++ b/test/suite/es6/Math.trunc/Math.trunc_NaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return NaN when called with NaN. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_NegDecimal.js b/test/suite/es6/Math.trunc/Math.trunc_NegDecimal.js index bf959729c8..a9ef33f88c 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_NegDecimal.js +++ b/test/suite/es6/Math.trunc/Math.trunc_NegDecimal.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return 0 if called with a value between 0 and -1. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_PosDecimal.js b/test/suite/es6/Math.trunc/Math.trunc_PosDecimal.js index b2c58955a0..f43b7250e2 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_PosDecimal.js +++ b/test/suite/es6/Math.trunc/Math.trunc_PosDecimal.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return 0 if called with a value between 0 and 1. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_Success.js b/test/suite/es6/Math.trunc/Math.trunc_Success.js index 144bf9d78c..d04a11ca56 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_Success.js +++ b/test/suite/es6/Math.trunc/Math.trunc_Success.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return 4578 if called with 4578.584949 includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Math.trunc/Math.trunc_Zero.js b/test/suite/es6/Math.trunc/Math.trunc_Zero.js index edf661baa0..be34f34746 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_Zero.js +++ b/test/suite/es6/Math.trunc/Math.trunc_Zero.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc" description: Math.trunc should return 0 when called with 0. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_Double.js b/test/suite/es6/Number.isInteger/Number.isInteger_Double.js index 018c53fc84..29192d7145 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_Double.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_Double.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: Number.isInteger should return false if called with a double. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_Infinity.js b/test/suite/es6/Number.isInteger/Number.isInteger_Infinity.js index 191633156f..b24e23f580 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_Infinity.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_Infinity.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: Number.isInteger should return false if called with Infinity. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_NaN.js b/test/suite/es6/Number.isInteger/Number.isInteger_NaN.js index e1c5c5c1c5..e6b6ae1409 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_NaN.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_NaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: Number.isInteger should return false if called with NaN. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_NonNumber.js b/test/suite/es6/Number.isInteger/Number.isInteger_NonNumber.js index b89c62d3b6..3740f5ed2e 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_NonNumber.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_NonNumber.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: > Number.isInteger should return false if called with a string (non-Number) diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_String.js b/test/suite/es6/Number.isInteger/Number.isInteger_String.js index 658fdf63ba..ac0136cf6c 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_String.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_String.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: > Number.isInteger should return false if called with a string (non-Number) diff --git a/test/suite/es6/Number.isInteger/Number.isInteger_Success.js b/test/suite/es6/Number.isInteger/Number.isInteger_Success.js index c49b4bfc0b..83ba996c11 100644 --- a/test/suite/es6/Number.isInteger/Number.isInteger_Success.js +++ b/test/suite/es6/Number.isInteger/Number.isInteger_Success.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger" description: Number.isInteger should return true if called with an integer. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isNaN/Number.isNaN_Boolean.js b/test/suite/es6/Number.isNaN/Number.isNaN_Boolean.js index e18c57f9bb..c81e9674f2 100644 --- a/test/suite/es6/Number.isNaN/Number.isNaN_Boolean.js +++ b/test/suite/es6/Number.isNaN/Number.isNaN_Boolean.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan" description: Number.IsNaN should return false if called with a boolean. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isNaN/Number.isNaN_NaN.js b/test/suite/es6/Number.isNaN/Number.isNaN_NaN.js index 6a96ccc27c..af24cff9d1 100644 --- a/test/suite/es6/Number.isNaN/Number.isNaN_NaN.js +++ b/test/suite/es6/Number.isNaN/Number.isNaN_NaN.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan" description: Number.IsNaN should return true if called with NaN. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/Number.isNaN/Number.isNaN_Object.js b/test/suite/es6/Number.isNaN/Number.isNaN_Object.js index 2aff516b5c..24d474ecce 100644 --- a/test/suite/es6/Number.isNaN/Number.isNaN_Object.js +++ b/test/suite/es6/Number.isNaN/Number.isNaN_Object.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan" description: > Number.IsNaN should return false if called with a non-number Object. diff --git a/test/suite/es6/Number.isNaN/Number.isNaN_String.js b/test/suite/es6/Number.isNaN/Number.isNaN_String.js index f5f8ef5040..9e0041937e 100644 --- a/test/suite/es6/Number.isNaN/Number.isNaN_String.js +++ b/test/suite/es6/Number.isNaN/Number.isNaN_String.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan" description: Number.IsNaN should return false if called with a String. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailBadLocation.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailBadLocation.js index ceddd3453d..88495ab414 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailBadLocation.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailBadLocation.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: > String should return false if a location is passed that is greather than the length of the string. diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailLocation.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailLocation.js index 9f8e383449..f7e892bae4 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailLocation.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailLocation.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: > String should return false if a letter is not found in the word starting from the passed location. diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailMissingLetter.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailMissingLetter.js index a51d33fa63..f15a5c173b 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_FailMissingLetter.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_FailMissingLetter.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: String should return false if a letter is not found in the word. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_Success.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_Success.js index a7d99ad9ad..bce79a1ff5 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_Success.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_Success.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: > String should return true when called on 'word' and passed 'w' and the location 0. diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_SuccessNoLocation.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_SuccessNoLocation.js index cd1c00cae8..e807b32118 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_SuccessNoLocation.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_SuccessNoLocation.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: > String should return true when called on 'word' and passed 'w' and with no location (defaults to 0). diff --git a/test/suite/es6/String.prototype.contains/String.prototype.contains_lengthProp.js b/test/suite/es6/String.prototype.contains/String.prototype.contains_lengthProp.js index e1580cc538..7103e65c15 100644 --- a/test/suite/es6/String.prototype.contains/String.prototype.contains_lengthProp.js +++ b/test/suite/es6/String.prototype.contains/String.prototype.contains_lengthProp.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains" description: String should have the property length with size of 1. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail.js index cab5e1c543..e6502fcd36 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: endsWith should return false when called on 'word' and passed 'r'. includes: [runTestCase.js] ---*/ diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail_2.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail_2.js index 00c9854ce9..0bf4898927 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail_2.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Fail_2.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: > endsWith should return false when called on 'word' and passed 'd', with an endPosition of 3. diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success.js index ae115452e1..02e1e6e97a 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: > endsWith should return true when called on 'word' and passed 'd' and with no endPosition (defaults to 4). diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_2.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_2.js index b9b1d98c8c..61584dbe11 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_2.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_2.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: > endsWith should return true when called on 'word' and passed 'd' and with an endPosition of 4. diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_3.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_3.js index 7e7352d4ab..c683c8a996 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_3.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_3.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: > endsWith should return true when called on 'word' and passed 'd' and with an endPosition of 25. diff --git a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_4.js b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_4.js index 0da8b5edb6..116ddc8eb6 100644 --- a/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_4.js +++ b/test/suite/es6/String.prototype.endsWith/String.prototype.endsWith_Success_4.js @@ -6,8 +6,6 @@ /*--- author: Ryan Lewis -email: ryanhlewis@hotmail.com -spec: "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith" description: > endsWith should return true when called on 'word' and passed 'r', with an endPosition of 3.