it('should inherit from the TestError prototype', function (done) {
            error.should.be.an.instanceOf(TestError);
            TestError.prototype.isPrototypeOf(error).should.equal(true);
            return done();
        });