TODO: for refactor: We can use the following style of code to validate that each event is received in a specific order Expect(nextEvent()).Should(Equal(SettingUpApplication)) Expect(nextEvent()).Should(Equal(CreatingApplication)) Expect(nextEvent()).Should(Equal(...)) Expect(nextEvent()).Should(Equa
(name string)
| 29 | // Expect(nextEvent()).Should(Equal(...)) |
| 30 | |
| 31 | func buildV3Resource(name string) sharedaction.V3Resource { |
| 32 | return sharedaction.V3Resource{ |
| 33 | FilePath: name, |
| 34 | Checksum: ccv3.Checksum{Value: fmt.Sprintf("checksum-%s", name)}, |
| 35 | SizeInBytes: 6, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | var _ = Describe("Actualize", func() { |
| 40 | var ( |
no outgoing calls
no test coverage detected