summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Li <tonyli.lives@gmail.com>2017-02-07 12:32:20 -0500
committerTony Li <tonyli.lives@gmail.com>2017-02-07 12:40:15 -0500
commitcfb4cd75999d6618d8fd14a8bbc2fd8400765c25 (patch)
tree48595fb2de065d895cfb7ac259cfe3b5ee505deb
parent2cb35f20ab39a66e9d86bdecaa66e397d19f76c8 (diff)
fix links
-rw-r--r--contributors/devel/writing-good-e2e-tests.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/contributors/devel/writing-good-e2e-tests.md b/contributors/devel/writing-good-e2e-tests.md
index ab13aff2..72bdbb72 100644
--- a/contributors/devel/writing-good-e2e-tests.md
+++ b/contributors/devel/writing-good-e2e-tests.md
@@ -146,7 +146,7 @@ right thing.
Here are a few pointers:
-+ [E2e Framework](../../test/e2e/framework/framework.go):
++ [E2e Framework](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/framework/framework.go):
Familiarise yourself with this test framework and how to use it.
Amongst others, it automatically creates uniquely named namespaces
within which your tests can run to avoid name clashes, and reliably
@@ -160,7 +160,7 @@ Here are a few pointers:
should always use this framework. Trying other home-grown
approaches to avoiding name clashes and resource leaks has proven
to be a very bad idea.
-+ [E2e utils library](../../test/e2e/framework/util.go):
++ [E2e utils library](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/framework/util.go):
This handy library provides tons of reusable code for a host of
commonly needed test functionality, including waiting for resources
to enter specified states, safely and consistently retrying failed
@@ -178,9 +178,9 @@ Here are a few pointers:
+ **Follow the examples of stable, well-written tests:** Some of our
existing end-to-end tests are better written and more reliable than
others. A few examples of well-written tests include:
- [Replication Controllers](../../test/e2e/rc.go),
- [Services](../../test/e2e/service.go),
- [Reboot](../../test/e2e/reboot.go).
+ [Replication Controllers](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/rc.go),
+ [Services](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/service.go),
+ [Reboot](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/reboot.go).
+ [Ginkgo Test Framework](https://github.com/onsi/ginkgo): This is the
test library and runner upon which our e2e tests are built. Before
you write or refactor a test, read the docs and make sure that you