(id, s string, l ...string)
| 838 | } |
| 839 | |
| 840 | func container(id, s string, l ...string) object { |
| 841 | return object{ |
| 842 | data: testContainer{ |
| 843 | id: id, |
| 844 | snapshot: s, |
| 845 | }, |
| 846 | removed: false, |
| 847 | labels: labelmap(l...), |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | func lease(id string, refs []leases.Resource, r bool, l ...string) object { |
| 852 | return object{ |
no test coverage detected
searching dependent graphs…