summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXsWack <xushiwei5@huawei.com>2017-08-22 11:25:55 +0800
committerGitHub <noreply@github.com>2017-08-22 11:25:55 +0800
commit45aac99cc498e6a7f9be634616107f0c81d77e92 (patch)
tree9390344e9cece4570323bdcd3c751f956b165611
parentd2bcc0baf97a23f517368b2b0ba48cb3876fcbdf (diff)
Update writing-good-e2e-tests.md
fix bad url
-rw-r--r--contributors/devel/writing-good-e2e-tests.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributors/devel/writing-good-e2e-tests.md b/contributors/devel/writing-good-e2e-tests.md
index 72bdbb72..062af7f6 100644
--- a/contributors/devel/writing-good-e2e-tests.md
+++ b/contributors/devel/writing-good-e2e-tests.md
@@ -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](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).
+ [Replication Controllers](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/apps/rc.go),
+ [Services](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/network/service.go),
+ [Reboot](https://github.com/kubernetes/kubernetes/blob/master/test/e2e/lifecycle/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