ZenTest

home

github.com/seattlerb/zentest

rdoc

docs.seattlerb.org/ZenTest

DESCRIPTION

ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby.

zentest scans your target and unit-test code and writes your missing code based on simple naming rules, enabling XP at a much quicker pace. zentest only works with Ruby and Minitest or Test::Unit. There is enough evidence to show that this is still proving useful to users, so it stays.

unit_diff is a command-line filter to diff expected results from actual results and allow you to quickly see exactly what is wrong. Do note that minitest 2.2+ provides an enhanced assert_equal obviating the need for unit_diff

autotest is a continous testing facility meant to be used during development. As soon as you save a file, autotest will run the corresponding dependent tests.

multiruby runs anything you want on multiple versions of ruby. Great for compatibility checking! Use multiruby_setup to manage your installed versions.

NOTE: The next major release of zentest will not include autotest (use minitest-autotest instead) and multiruby will use rbenv / ruby-build for version management.

FEATURES

STRATEGERY

There are two strategeries intended for ZenTest: test conformance auditing and rapid XP.

For auditing, ZenTest provides an excellent means of finding methods that have slipped through the testing process. I’ve run it against my own software and found I missed a lot in a well tested package. Writing those tests found 4 bugs I had no idea existed.

ZenTest can also be used to evaluate generated code and execute your tests, allowing for very rapid development of both tests and implementation.

AUTOTEST TIPS

Setting up your project with a custom setup is easily done by creating a “.autotest” file in your project. Here is an example of adding some plugins, using minitest as your test library, and running rcov on full passes:

require 'autotest/restart'

Autotest.add_hook :initialize do |at|
  at.testlib = "minitest/autorun"
end

Autotest.add_hook :all_good do |at|
  system "rake rcov_info"
end if ENV['RCOV']

Do note, since minitest ships with ruby19, if you want to use the latest minitest gem you need to ensure that the gem activation occurs! To do this, add the gem activation and the proper require to a separate file (like “.minitest.rb” or even a test helper if you have one) and use that for your testlib instead:

.minitest.rb:

gem "minitest"
require "minitest/autorun"

.autotest:

Autotest.add_hook :initialize do |at|
  at.testlib = ".minitest"
end

If you prefer to suffix test files with “_test.rb” (instead of the default which prefixes test files with “test_”) you can change the mapping by installing the autotest-suffix plugin. To do this first install the autotest-suffix gem:

$ gem install autotest-suffix

Then add the following to the “.autotest” file:

require "autotest/suffix"

If you prefer minitest/spec to minitest/unit, you can still use autotest by installing the autotest-spec plugin. To do this first install the autotest-spec gem:

$ gem install autotest-spec

Then add the following to the “.autotest” file:

require "autotest/spec"

SYNOPSIS

ZenTest MyProject.rb TestMyProject.rb > missing.rb

./TestMyProject.rb | unit_diff

autotest

multiruby_setup mri:svn:current
multiruby ./TestMyProject.rb

Windows and Color

Read this: blog.mmediasys.com/2010/11/24/we-all-love-colors/

REQUIREMENTS

INSTALL

LICENSE

(The MIT License)

Copyright © Ryan Davis, Eric Hodel, seattle.rb

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.