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-3.1.2/test/test.spec.js')
-rw-r--r--tests/lib/mocha-3.1.2/test/test.spec.js77
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/lib/mocha-3.1.2/test/test.spec.js b/tests/lib/mocha-3.1.2/test/test.spec.js
new file mode 100644
index 0000000000..73c09b3b06
--- /dev/null
+++ b/tests/lib/mocha-3.1.2/test/test.spec.js
@@ -0,0 +1,77 @@
+'use strict';
+
+var mocha = require('../');
+var should = require('should');
+var Test = mocha.Test;
+
+describe('Test', function () {
+ describe('.clone()', function () {
+ beforeEach(function () {
+ this._test = new Test('To be cloned', function () {});
+ this._test._timeout = 3043;
+ this._test._slow = 101;
+ this._test._enableTimeouts = true;
+ this._test._retries = 3;
+ this._test._currentRetry = 1;
+ this._test._allowedGlobals = ['foo'];
+ this._test.parent = 'foo';
+ this._test.file = 'bar';
+ });
+
+ it('should copy the title', function () {
+ this._test.clone().title.should.equal('To be cloned');
+ });
+
+ it('should copy the timeout value', function () {
+ this._test.clone().timeout().should.equal(3043);
+ });
+
+ it('should copy the slow value', function () {
+ this._test.clone().slow().should.equal(101);
+ });
+
+ it('should copy the enableTimeouts value', function () {
+ this._test.clone().enableTimeouts().should.be.true();
+ });
+
+ it('should copy the retries value', function () {
+ this._test.clone().retries().should.equal(3);
+ });
+
+ it('should copy the currentRetry value', function () {
+ this._test.clone().currentRetry().should.equal(1);
+ });
+
+ it('should copy the globals value', function () {
+ this._test.clone().globals().should.not.be.empty();
+ });
+
+ it('should copy the parent value', function () {
+ this._test.clone().parent.should.equal('foo');
+ });
+
+ it('should copy the file value', function () {
+ this._test.clone().file.should.equal('bar');
+ });
+ });
+
+ describe('.isPending()', function () {
+ beforeEach(function () {
+ this._test = new Test('Is it skipped', function () {});
+ });
+
+ it('should not be pending by default', function () {
+ should(this._test.isPending()).not.be.ok();
+ });
+
+ it('should be pending when marked as such', function () {
+ this._test.pending = true;
+ should(this._test.isPending()).be.ok();
+ });
+
+ it('should be pending when its parent is pending', function () {
+ this._test.parent = { isPending: function () { return true; } };
+ should(this._test.isPending()).be.ok();
+ });
+ });
+});