()
| 45 | } |
| 46 | |
| 47 | func (f *FakeObject) Merged() (runtime.Object, error) { |
| 48 | // Return nil if merged object does not exist |
| 49 | if f.merged == nil { |
| 50 | return nil, nil |
| 51 | } |
| 52 | return &unstructured.Unstructured{Object: f.merged}, nil |
| 53 | } |
| 54 | |
| 55 | func (f *FakeObject) Live() runtime.Object { |
| 56 | // Return nil if live object does not exist |