BeforeEach(func() { sourceApp = models.Application{ ApplicationFields: models.ApplicationFields{ Name: "source-app", Guid: "source-app-guid", }, } appRepo.ReadReturns.App = sourceApp targetApp = models.Application{ ApplicationFields: models.ApplicationFields{ Name: "target-app", Guid: "target-app-guid", }, } appRepo.ReadFromSpaceReturns(targetApp, nil) }) Describe("when no parameters are passed", func() { It("obtains both the source and target application from the same space", func() { runCommand("source-app", "target-app") targetAppName, spaceGuid := appRepo.ReadFromSpaceArgsForCall(0) Expect(targetAppName).To(Equal("target-app")) Expect(spaceGuid).To(Equal("my-space-guid")) Expect(appRepo.ReadArgs.Name).To(Equal("source-app")) sourceAppGuid, targetAppGuid := copyAppSourceRepo.CopyApplicationArgsForCall(0) Expect(sourceAppGuid).To(Equal("source-app-guid")) Expect(targetAppGuid).To(Equal("target-app-guid"))