From b606cc79ca42d55b28a46f9779a238b23d148ac9 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 17 Mar 2015 11:26:18 +1100 Subject: [PATCH] remove class playground property initializer tests --- .../instance/exec.js | 7 ------- .../options.json | 3 --- .../static/exec.js | 5 ----- 3 files changed, 15 deletions(-) delete mode 100644 test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js delete mode 100644 test/fixtures/transformation/es6-classes-playground-property-initializers/options.json delete mode 100644 test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js b/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js deleted file mode 100644 index 80711e14fb..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js +++ /dev/null @@ -1,7 +0,0 @@ -class MyClass { - myProp = { someValue: 42 }; -} - -var myClass = new MyClass; -assert.ok(myClass.myProp !== MyClass.prototype.myProp); -assert.equal(myClass.myProp.someValue, 42); diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json b/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json deleted file mode 100644 index e68df25688..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "playground": true -} diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js b/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js deleted file mode 100644 index b6f0cf4dd0..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js +++ /dev/null @@ -1,5 +0,0 @@ -class MyClass { - static myProp = { someValue: 42 }; -} - -assert.equal(MyClass.myProp.someValue, 42);