From 6cb8d4e4664ee6650bb1b4603a20e30a2fb73fd9 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 22 Dec 2014 15:03:47 -0400 Subject: [PATCH] Remove almost empty error spec --- lib/resin/errors/errors.spec.coffee | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 lib/resin/errors/errors.spec.coffee diff --git a/lib/resin/errors/errors.spec.coffee b/lib/resin/errors/errors.spec.coffee deleted file mode 100644 index af202fdd..00000000 --- a/lib/resin/errors/errors.spec.coffee +++ /dev/null @@ -1,12 +0,0 @@ -expect = require('chai').expect -errors = require('./errors') - -describe 'Errors:', -> - - describe 'NotFound', -> - - it 'should get a custom message', -> - message = 'Foo' - error = new errors.NotFound(message) - expect(error.message).to.not.equal(message) - expect(error.message).to.contain(message)