public
Description: Lightweight mutation testing in any flavor of ruby
Homepage: http://andrewjgrimm.wordpress.com/2009/11/08/declare-war-on-everything-with-chaser/
Clone URL: git://github.com/agrimm/chaser.git
chaser /
name age message
file History.txt Sat Oct 10 18:33:02 -0700 2009 Modified README and History a bit. [Andrew Grimm]
file Manifest.txt Sat Nov 07 02:33:47 -0800 2009 Created gemspec. [Andrew Grimm]
file README.txt Sun Nov 08 02:39:22 -0800 2009 Updated documentation. [Andrew Grimm]
file Rakefile Fri Nov 13 19:34:35 -0800 2009 Modified gem configuration a bit, and bumped up... [Andrew Grimm]
directory bin/ Sat Nov 07 04:44:55 -0800 2009 Added checking that the test pattern finds test... [Andrew Grimm]
file chaser.gemspec Sat Nov 14 21:36:20 -0800 2009 Bumped version up to v0.0.3 [Andrew Grimm]
directory lib/ Sat Nov 14 21:36:20 -0800 2009 Bumped version up to v0.0.3 [Andrew Grimm]
directory test/ Sat Nov 14 21:01:50 -0800 2009 Added handling of blocks for mutated class meth... [Andrew Grimm]
README.txt
== DESCRIPTION:

Chaser is unit test sadism(tm), like Seattlerb's Heckle. It's more or less mutation testing, except that rather than 
mutating every line of code it can get its claws into, it merely modifies the return value of targeted methods. If the 
unit tests don't notice the modified return values, or the program going haywire as a result of using those modified 
return values, then they aren't doing their jobs properly.

Unit test sadism is a trademark of Ryan Davis and Kevin Clark, and is used without permission.

== FEATURES/PROBLEMS:

* It only mutates the return values of methods.
* It works in ruby 1.9, Windows, and JRuby.

== REQUIREMENTS:

* Test/Unit. Ruby 1.9 needs the test-unit gem, while ruby 1.8 doesn't require anything!

== INSTALL:

* Add gemcutter as a gem source.
* sudo gem install chaser

== LICENSE:

(The MIT License)

Copyright (c) 2006-2009 Ryan Davis and Kevin Clark and Andrew Grimm

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.