Sebastiaan van Stijn
|
d79cc1b67d
|
testing: remove custom testingT interfaces
now that we no longer use gocheck, we should be able
to just use golang's own interface.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
|
2019-09-23 13:54:51 +02:00 |
|
Sebastiaan van Stijn
|
3e4f6225da
|
testutil: remove unneeded namer, testname interfaces
Now that the gocheck framework is no longer used, we don't
have to define these interfaces.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
|
2019-09-23 13:41:45 +02:00 |
|
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 |
|
Vincent Demeester
|
3845728524
|
Update tests to use gotest.tools 👼
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
|
2018-06-13 09:04:30 +02:00 |
|
Vincent Demeester
|
062564084a
|
Move fakecontext, fakegit and fakestorage to internal/test
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
|
2018-04-17 09:53:09 +02:00 |
|
Daniel Nephin
|
4f0d95fa6e
|
Add canonical import comment
Signed-off-by: Daniel Nephin <dnephin@docker.com>
|
2018-02-05 16:51:57 -05:00 |
|
Daniel Nephin
|
92427b3a81
|
Update tests to use icmd
Signed-off-by: Daniel Nephin <dnephin@docker.com>
|
2017-08-25 12:07:30 -04:00 |
|
Vincent Demeester
|
56fb4653e8
|
Move FakeContext to integration-cli/cli/build/context package…
… and continue emptying `docker_utils_test.go` from build related function.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
|
2017-04-11 18:25:49 +02:00 |
|
allencloud
|
32b81dae29
|
remove redundant comments in test build.go
Signed-off-by: allencloud <allen.sun@daocloud.io>
|
2017-03-27 10:59:13 +08:00 |
|
Vincent Demeester
|
50c4475df6
|
Introduce a cli package for test-integration
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
|
2017-03-23 18:35:22 +01:00 |
|