missing a done or two

This commit is contained in:
Tim Griesser 2013-05-26 20:20:28 -04:00
parent 3446fe7461
commit 557d81f178

View File

@ -46,7 +46,7 @@
found.attributes.title.should.equal(firstPost.attributes.title);
done();
});
}, done);
});
it('can edit', function (done) {
@ -87,9 +87,7 @@
createdPost.attributes.slug.should.equal(newPost.title.toLowerCase().replace(/ /g, '-'), 'slug is correct');
done();
}, function (error) {
throw error;
});
}, done);
});
it('can delete', function (done) {