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.0/test/acceptance/interfaces/bdd.spec.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/interfaces/bdd.spec.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/interfaces/bdd.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/interfaces/bdd.spec.js
deleted file mode 100644
index ba444c8f7f..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/interfaces/bdd.spec.js
+++ /dev/null
@@ -1,32 +0,0 @@
-describe('integer primitives', function(){
- describe('arithmetic', function(){
- it('should add', function(){
- expect(1 + 1).to.equal(2);
- expect(2 + 2).to.equal(4);
- })
-
- it('should subtract', function(){
- expect(1 - 1).to.equal(0);
- expect(2 - 1).to.equal(1);
- })
- })
-})
-
-describe('integer primitives', function(){
- describe('arithmetic is not', function(){
- it('should add', function(){
- expect(1 + 1).not.to.equal(3);
- expect(2 + 2).not.to.equal(5);
- })
- })
-})
-
-context('test suite', function(){
- beforeEach(function(){
- this.number = 5;
- })
-
- specify('share a property', function(){
- expect(this.number).to.equal(5);
- })
-})