summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Philips <brandon@ifup.org>2016-12-27 08:40:23 -0800
committerGitHub <noreply@github.com>2016-12-27 08:40:23 -0800
commit51933534cdb9b139ee4cbdd7736f5c8a5d4bf380 (patch)
tree9e23ffd1795c6cedce984650619d886b73537d7b
parent548eb7292d45a4af78e0141d33094130dfe6080a (diff)
parent0b336f6f39646b5535fbbc011b8f7bc3b20527b7 (diff)
Merge pull request #239 from gyliu513/patch1
Updated auth test link.
-rw-r--r--contributors/devel/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/testing.md b/contributors/devel/testing.md
index 45848f3b..467677ad 100644
--- a/contributors/devel/testing.md
+++ b/contributors/devel/testing.md
@@ -40,7 +40,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/auth_test.go)
+ - Example: [TestNamespaceAuthorization](https://github.com/kubernetes/kubernetes/blob/master/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.