Sam Whited
|
b37c214e3c
|
testutil: make testing packages public
This was done with something along the lines of:
```
mv internal/test testutil
pushd testutil/; grep -IRl "package test" | xargs -I '{}' sed -i -e 's|package test|package testutil|g' {}; popd
mv internal/testutil/*.go testutil/ && rm -rf internal/
grep -IRl "github.com\/docker\/docker\/internal\/test" | xargs -I '{}' sed -i -e 's|github.com/docker/docker/internal/test|github.com/docker/docker/test|g' {}
goimports .
```
I also modified the basic plugin path in testutil/fixtures/plugin.
Signed-off-by: Sam Whited <sam@samwhited.com>
|
2019-09-11 07:47:23 -05:00 |
|
Daniel Nephin
|
4f0d95fa6e
|
Add canonical import comment
Signed-off-by: Daniel Nephin <dnephin@docker.com>
|
2018-02-05 16:51:57 -05:00 |
|
Christopher Jones
|
58151358c0
|
[integration] ensure frozen images are loaded
Ensures that the frozen test images are loaded in the daemon
before any tests are run.
Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
|
2017-10-20 16:51:13 -04:00 |
|
Simon Ferquel
|
172e73a1df
|
Test & Fix build with rm/force-rm matrix
Signed-off-by: Simon Ferquel <simon.ferquel@docker.com>
|
2017-10-12 10:22:40 +02:00 |
|