From 6a82d07b2158a107a19b4b8606d3b13f8bfa80dd Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Wed, 13 Apr 2005 21:58:38 +0000 Subject: adding readme git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@136 980ebf18-57e1-0310-9a29-db15c13687c0 --- test/README | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/README (limited to 'test') diff --git a/test/README b/test/README new file mode 100644 index 000000000..80d98b4bd --- /dev/null +++ b/test/README @@ -0,0 +1,19 @@ +$Id$ + +Tests are organized into a dual hierarchy: each subdirectory is +considered a test suite, and each file in the subdirectory is considered +a test case. You can use any test case as an example of how to write +more of them, but basically the only requirements are that they each have +their own class names, their names each match /tc_.+\.r/, and that they have +the following header: + +if __FILE__ == $0 + $:.unshift '..' + $:.unshift '../../lib' + $blinkbase = "../.." +end + +To run all tests, just type './test'. To run an individual suite, run +'./test '. To run an individual case, cd into the suite +subdirectory and run './tc_.rb'. Tests are basically guaranteed +not to work without cd'ing into the subdirectory. -- cgit