moby--moby/image
Aaron Lehmann 6052f2b396 Remove pkg/testutil/assert in favor of testify
I noticed that we're using a homegrown package for assertions. The
functions are extremely similar to testify, but with enough slight
differences to be confusing (for example, Equal takes its arguments in a
different order). We already vendor testify, and it's used in a few
places by tests.

I also found some problems with pkg/testutil/assert. For example, the
NotNil function seems to be broken. It checks the argument against
"nil", which only works for an interface. If you pass in a nil map or
slice, the equality check will fail.

In the interest of avoiding NIH, I'm proposing replacing
pkg/testutil/assert with testify. The test code looks almost the same,
but we avoid the confusion of having two similar but slightly different
assertion packages, and having to maintain our own package instead of
using a commonly-used one.

In the process, I found a few places where the tests should halt if an
assertion fails, so I've made those cases (that I noticed) use "require"
instead of "assert", and I've vendored the "require" package from
testify alongside the already-present "assert" package.

Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
2017-04-14 12:03:21 -07:00
..
cache image/cache: fix isValidParent logic 2017-02-21 19:32:04 +01:00
spec some grammatical errors 2017-01-31 19:33:12 -08:00
tarexport Use distribution reference 2017-02-07 11:08:37 -08:00
v1 *: use opencontainers/go-digest package 2017-01-06 18:48:41 -08:00
fs.go Wrap errors in digest package so they are consistent between platforms. 2017-03-08 11:48:46 -05:00
fs_test.go Remove pkg/testutil/assert in favor of testify 2017-04-14 12:03:21 -07:00
image.go Fixing a typo in spelling 2017-03-30 14:31:45 +05:30
image_test.go Remove pkg/testutil/assert in favor of testify 2017-04-14 12:03:21 -07:00
rootfs.go Windows: Skip layers+base images 2016-09-07 12:16:45 -07:00
store.go *: use opencontainers/go-digest package 2017-01-06 18:48:41 -08:00
store_test.go Remove pkg/testutil/assert in favor of testify 2017-04-14 12:03:21 -07:00