aboutsummaryrefslogtreecommitdiffstats
path: root/lib/minitest/README.txt
diff options
context:
space:
mode:
authorryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-19 20:34:21 +0000
committerryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-19 20:34:21 +0000
commit9bec8ef50ce1858ee2070a1637447eb12ce89990 (patch)
treee6cece58a34cf857c56e47bab13a5eeacd71af71 /lib/minitest/README.txt
parent9cfc7a658f1e6f97fd88ee69310f4ccc5f20d73c (diff)
downloadruby-9bec8ef50ce1858ee2070a1637447eb12ce89990.tar.gz
Imported minitest 2.6.2 (r6712)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/minitest/README.txt')
-rw-r--r--lib/minitest/README.txt19
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/minitest/README.txt b/lib/minitest/README.txt
index 0595083d49..f55f7d9710 100644
--- a/lib/minitest/README.txt
+++ b/lib/minitest/README.txt
@@ -1,13 +1,25 @@
= minitest/{unit,spec,mock,benchmark}
home :: https://github.com/seattlerb/minitest
-rdoc :: http://bfts.rubyforge.org/minitest
+rdoc :: http://docs.seattlerb.org/minitest
+vim :: https://github.com/sunaku/vim-ruby-minitest
== DESCRIPTION:
minitest provides a complete suite of testing facilities supporting
TDD, BDD, mocking, and benchmarking.
+ "I had a class with Jim Weirich on testing last week and we were
+ allowed to choose our testing frameworks. Kirk Haines and I were
+ paired up and we cracked open the code for a few test
+ frameworks...
+
+ I MUST say that mintiest is *very* readable / understandable
+ compared to the 'other two' options we looked at. Nicely done and
+ thank you for helping us keep our mental sanity."
+
+ -- Wayne E. Seguin
+
minitest/unit is a small and incredibly fast unit testing framework.
It provides a rich set of assertions to make your tests clean and
readable.
@@ -32,6 +44,11 @@ implementors that need a minimal set of methods to bootstrap a working
test suite. For example, there is no magic involved for test-case
discovery.
+ "Again, I can’t praise enough the idea of a testing/specing
+ framework that I can actually read in full in one sitting!"
+
+ -- Piotr Szotkowski
+
== FEATURES/PROBLEMS:
* minitest/autorun - the easy and explicit way to run all your tests.