Пример #1
0
					},
					{
						ProcessGuid: "process-guid-2",
						Domain:      "domain-2",
						Action: &models.RunAction{
							User: "******",
							Path: "the-path",
						},
					},
				}, nil)

				fakeBBS.DesiredLRPsByDomainReturns([]models.DesiredLRP{
					{
						ProcessGuid: "process-guid-2",
						Domain:      "domain-2",
						Action: &models.RunAction{
							User: "******",
							Path: "the-path",
						},
					},
				}, nil)
			})

			It("call the BBS to retrieve the desired LRP", func() {
				handler.GetAll(responseRecorder, newTestRequest(""))
				Expect(fakeBBS.DesiredLRPsCallCount()).To(Equal(1))
			})

			It("responds with 200 Status OK", func() {
				handler.GetAll(responseRecorder, newTestRequest(""))
				Expect(responseRecorder.Code).To(Equal(http.StatusOK))
			})