}) Describe("GetRouteApplications", func() { Context("when the CC client returns no errors", func() { BeforeEach(func() { fakeCloudControllerClient.GetRouteApplicationsReturns( []ccv2.Application{ { GUID: "application-guid", Name: "application-name", }, }, ccv2.Warnings{"route-applications-warning"}, nil) }) It("returns the applications bound to the route and warnings", func() { applications, warnings, err := actor.GetRouteApplications("route-guid", nil) Expect(fakeCloudControllerClient.GetRouteApplicationsCallCount()).To(Equal(1)) Expect(fakeCloudControllerClient.GetRouteApplicationsArgsForCall(0)).To(Equal("route-guid")) Expect(err).ToNot(HaveOccurred()) Expect(warnings).To(ConsistOf("route-applications-warning")) Expect(applications).To(ConsistOf( Application{ GUID: "application-guid", Name: "application-name", }, )) }) }) Context("when the CC client returns an error", func() { BeforeEach(func() {