From 127fe5d2add066d838e2b4b0d5a6d5cea06ee6d0 Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Tue, 21 Jul 2015 11:48:17 -0700 Subject: [PATCH] Clarify style rule about testing frameworks Signed-off-by: Stephen J Day --- CONTRIBUTING.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eb41c798e..bc58d5eef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -118,7 +118,9 @@ The rules: 8. No utils or helpers packages. If a function is not general enough to warrant it's own package, it has not been written generally enough to be a part of a util package. Just leave it unexported and well-documented. -9. No, we don't need another unit testing framework. +9. All tests should run with `go test` and outside tooling should not be + required. No, we don't need another unit testing framework. Assertion + packages are acceptable if they provide _real_ incremental value. 10. Even though we call these "rules" above, they are actually just guidelines. Since you've read all the rules, you now know that.