var should = require('should'),
    errorProps = ['message', 'errorType'];

should.Assertion.add('JSONErrorObject', function () {
    this.params = {operator: 'to be a valid JSON Error Object'};
    this.obj.should.be.an.Object();
    this.obj.should.have.properties(errorProps);
});

should.Assertion.add('JSONErrorResponse', function () {
    this.params = {operator: 'to be a valid JSON Error Response'};

    this.obj.should.have.property('errors').which.is.an.Array();
    this.obj.errors.length.should.be.above(0);

    this.obj.errors.forEach(function (err) {
        err.should.be.a.JSONErrorObject();
    });
});