summaryrefslogtreecommitdiff
path: root/testing.md
diff options
context:
space:
mode:
authorMike Danese <mikedanese@google.com>2016-06-08 14:49:33 -0700
committerMike Danese <mikedanese@google.com>2016-07-07 00:54:23 -0700
commitc5324cf45267562e9a0a7331cdba17f6031ba7d8 (patch)
treeddd7e3b63cf3047b650f11878f7a1a709776a1d3 /testing.md
parent0bafb2a75bafe53632284c8b4ff62401a32a4822 (diff)
update docs
Signed-off-by: Mike Danese <mikedanese@google.com>
Diffstat (limited to 'testing.md')
-rw-r--r--testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing.md b/testing.md
index 4ae98859..4e41a1da 100644
--- a/testing.md
+++ b/testing.md
@@ -73,7 +73,7 @@ passing, so it is often a good idea to make sure the e2e tests work as well.
* All packages and any significant files require unit tests.
* The preferred method of testing multiple scenarios or input is
[table driven testing](https://github.com/golang/go/wiki/TableDrivenTests)
- - Example: [TestNamespaceAuthorization](../../test/integration/auth_test.go)
+ - Example: [TestNamespaceAuthorization](../../test/integration/auth/auth_test.go)
* Unit tests must pass on OS X and Windows platforms.
- Tests using linux-specific features must be skipped or compiled out.
- Skipped is better, compiled out is required when it won't compile.
@@ -189,9 +189,9 @@ See `go help test` and `go help testflag` for additional info.
- This includes kubectl commands
* The preferred method of testing multiple scenarios or inputs
is [table driven testing](https://github.com/golang/go/wiki/TableDrivenTests)
- - Example: [TestNamespaceAuthorization](../../test/integration/auth_test.go)
+ - Example: [TestNamespaceAuthorization](../../test/integration/auth/auth_test.go)
* Each test should create its own master, httpserver and config.
- - Example: [TestPodUpdateActiveDeadlineSeconds](../../test/integration/pods_test.go)
+ - Example: [TestPodUpdateActiveDeadlineSeconds](../../test/integration/pods/pods_test.go)
* See [coding conventions](coding-conventions.md).
### Install etcd dependency