Privileged: true, Instances: 1, Action: &oldmodels.RunAction{ User: "******", Path: "the-path", }, } Context("when everything succeeds", func() { BeforeEach(func(done Done) { defer close(done) handler.Create(responseRecorder, newTestRequest(validCreateLRPRequest)) }) It("calls DesireLRP on the BBS", func() { Expect(fakeLegacyBBS.DesireLRPCallCount()).To(Equal(1)) _, desired := fakeLegacyBBS.DesireLRPArgsForCall(0) Expect(desired).To(Equal(expectedDesiredLRP)) }) It("responds with 201 CREATED", func() { Expect(responseRecorder.Code).To(Equal(http.StatusCreated)) }) It("responds with an empty body", func() { Expect(responseRecorder.Body.String()).To(Equal("")) }) }) Context("when the BBS responds with an error", func() { BeforeEach(func(done Done) {