546cac4
commit c66cfc8820efdfdac580ede98414e970dda4e84d
546cac4
Author: Tom Hughes <tom@compton.nu>
546cac4
Date:   Sat Dec 19 17:30:37 2015 +0000
546cac4
546cac4
    Update to should 8.x which now includes should-promised
546cac4
546cac4
diff --git a/package.json b/package.json
546cac4
index 1a69e52..351f9c0 100644
546cac4
--- a/package.json
546cac4
+++ b/package.json
546cac4
@@ -43,8 +43,7 @@
546cac4
     "istanbul": "^0.4.0",
546cac4
     "mocha": "^2.3.4",
546cac4
     "require-directory": "^2.1.1",
546cac4
-    "should": "^7.1.1",
546cac4
-    "should-promised": "^0.3.1",
546cac4
+    "should": "^8.0.2",
546cac4
     "standard": "^5.4.1"
546cac4
   },
546cac4
   "dependencies": {
546cac4
diff --git a/test/index.js b/test/index.js
546cac4
index 05c481c..2416f68 100644
546cac4
--- a/test/index.js
546cac4
+++ b/test/index.js
546cac4
@@ -6,8 +6,6 @@ var fixtures = require('./fixtures')
546cac4
 var validate = require('..')
546cac4
 var ValidationError = require('../lib/error')
546cac4
 
546cac4
-require('should-promised')
546cac4
-
546cac4
 describe('Promises', function () {
546cac4
   it('should return a Promise', function () {
546cac4
     validate().should.be.a.Promise()
546cac4
diff --git a/test/log.js b/test/log.js
546cac4
index 7d1c0cb..1bcd3a7 100644
546cac4
--- a/test/log.js
546cac4
+++ b/test/log.js
546cac4
@@ -6,8 +6,6 @@ var fixtures = require('./fixtures')
546cac4
 var validate = require('..')
546cac4
 var ValidationError = require('../lib/error')
546cac4
 
546cac4
-require('should-promised')
546cac4
-
546cac4
 describe('Full HAR', function () {
546cac4
   it('should fail with empty object', function () {
546cac4
     validate({}).should.be.rejectedWith(ValidationError, {
546cac4
diff --git a/test/misc.js b/test/misc.js
546cac4
index fbf3a7c..6b342b9 100644
546cac4
--- a/test/misc.js
546cac4
+++ b/test/misc.js
546cac4
@@ -4,8 +4,6 @@
546cac4
 
546cac4
 var validate = require('..')
546cac4
 
546cac4
-require('should-promised')
546cac4
-
546cac4
 describe('Cache Entry', function () {
546cac4
   it('should allow null beforeRequest', function () {
546cac4
     var cache = {
546cac4
diff --git a/test/request.js b/test/request.js
546cac4
index 4422f5c..5c446a5 100644
546cac4
--- a/test/request.js
546cac4
+++ b/test/request.js
546cac4
@@ -6,8 +6,6 @@ var fixtures = require('./fixtures')
546cac4
 var validate = require('..')
546cac4
 var ValidationError = require('../lib/error')
546cac4
 
546cac4
-require('should-promised')
546cac4
-
546cac4
 describe('Request Only', function () {
546cac4
   it('should fail with empty object', function () {
546cac4
     validate.request({}).should.be.rejectedWith(ValidationError, {
546cac4
diff --git a/test/response.js b/test/response.js
546cac4
index e4bfd0f..2761b6d 100644
546cac4
--- a/test/response.js
546cac4
+++ b/test/response.js
546cac4
@@ -6,8 +6,6 @@ var fixtures = require('./fixtures')
546cac4
 var validate = require('..')
546cac4
 var ValidationError = require('../lib/error')
546cac4
 
546cac4
-require('should-promised')
546cac4
-
546cac4
 describe('Response Only', function () {
546cac4
   it('should fail with empty object', function () {
546cac4
     validate.response({}).should.be.rejectedWith(ValidationError, {