636d5d8e9a
Add tests which exercise image pulling, listing, and removal. When running tests, prepopulate the store with an image with the default infrastructure container's name, using the locally-built "pause" binary, so that tests won't have to pull it down from the network. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
6 lines
79 B
Makefile
6 lines
79 B
Makefile
bin2img: $(wildcard *.go)
|
|
go build -o $@
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f bin2img
|