resolved conflicts

This commit is contained in:
Ritchie Martori
2012-08-02 09:33:26 -07:00
2 changed files with 20 additions and 1 deletions

View File

@@ -354,9 +354,24 @@ describe('Collection', function() {
dpd.empty.get(function(result) {
expect(result).to.eql([]);
done();
})
});
});
});
describe('cancel()', function(){
it('should cancel when POSTing', function(done) {
dpd.empty.post({}, function (item, err) {
expect(err).to.exist;
expect(err.message).to.equal('testing cancel');
done();
});
});
});
afterEach(function (done) {
this.timeout(10000);
cleanCollection(dpd.empty, done);
})
});

File diff suppressed because one or more lines are too long