Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/mocha-2.2.5/lib/test.js')
-rwxr-xr-xtests/lib/mocha-2.2.5/lib/test.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/lib/mocha-2.2.5/lib/test.js b/tests/lib/mocha-2.2.5/lib/test.js
deleted file mode 100755
index 4a4cf63cce..0000000000
--- a/tests/lib/mocha-2.2.5/lib/test.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * Module dependencies.
- */
-
-var Runnable = require('./runnable');
-
-/**
- * Expose `Test`.
- */
-
-module.exports = Test;
-
-/**
- * Initialize a new `Test` with the given `title` and callback `fn`.
- *
- * @param {String} title
- * @param {Function} fn
- * @api private
- */
-
-function Test(title, fn) {
- Runnable.call(this, title, fn);
- this.pending = !fn;
- this.type = 'test';
-}
-
-/**
- * Inherit from `Runnable.prototype`.
- */
-
-Test.prototype.__proto__ = Runnable.prototype;