(b []byte, r bool, l ...string)
| 801 | } |
| 802 | |
| 803 | func blob(b []byte, r bool, l ...string) object { |
| 804 | return object{ |
| 805 | data: testContent{ |
| 806 | data: b, |
| 807 | }, |
| 808 | removed: r, |
| 809 | labels: labelmap(l...), |
| 810 | } |
| 811 | } |
| 812 | |
| 813 | func image(n string, d digest.Digest, l ...string) object { |
| 814 | return object{ |
no test coverage detected
searching dependent graphs…