mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
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>
3 lines
135 B
Go
3 lines
135 B
Go
// Package testutil contains common testing tasks like running dockerd.
|
|
package testutil // import "github.com/docker/docker/testutil"
|