summaryrefslogtreecommitdiff
path: root/spec/javascripts/helpers/class_spec_helper_spec.js.es6
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/helpers/class_spec_helper_spec.js.es6')
-rw-r--r--spec/javascripts/helpers/class_spec_helper_spec.js.es635
1 files changed, 0 insertions, 35 deletions
diff --git a/spec/javascripts/helpers/class_spec_helper_spec.js.es6 b/spec/javascripts/helpers/class_spec_helper_spec.js.es6
deleted file mode 100644
index d1155f1bd1e..00000000000
--- a/spec/javascripts/helpers/class_spec_helper_spec.js.es6
+++ /dev/null
@@ -1,35 +0,0 @@
-/* global ClassSpecHelper */
-//= require ./class_spec_helper
-
-describe('ClassSpecHelper', () => {
- describe('.itShouldBeAStaticMethod', function () {
- beforeEach(() => {
- class TestClass {
- instanceMethod() { this.prop = 'val'; }
- static staticMethod() {}
- }
-
- this.TestClass = TestClass;
- });
-
- ClassSpecHelper.itShouldBeAStaticMethod(ClassSpecHelper, 'itShouldBeAStaticMethod');
-
- it('should have a defined spec', () => {
- expect(ClassSpecHelper.itShouldBeAStaticMethod(this.TestClass, 'staticMethod').description).toBe('should be a static method');
- });
-
- it('should pass for a static method', () => {
- const spec = ClassSpecHelper.itShouldBeAStaticMethod(this.TestClass, 'staticMethod');
- expect(spec.status()).toBe('passed');
- });
-
- it('should fail for an instance method', (done) => {
- const spec = ClassSpecHelper.itShouldBeAStaticMethod(this.TestClass, 'instanceMethod');
- spec.resultCallback = (result) => {
- expect(result.status).toBe('failed');
- done();
- };
- spec.execute();
- });
- });
-});