it("sends back the successful content", function(done) {
            whenAppResponseReturnsSuccessfully(function() {
                expect(mockExpressResponse.status).toHaveBeenCalledWith(204);
                expect(mockExpressResponse.send).toHaveBeenCalledWith("successful content");
                done();