1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
=head1 NAME
shindont - simple depth first ruby testing
=head1 SYNOPSIS
shindont [<something_tests.rb>]
shindont [<some_test_directory>]
shindont [<some_test_directory>] [+<tag>] [-<tag>]
=head1 DESCRIPTION
B<shindont> runs tests non interactively. You can use it where speed matters
(i.e. continuous integration). shindo with (n)o (t)race and much quieter output.
See /usr/share/doc/ruby-shindo/ for more details.
=head1 OPTIONS
+<tag> run just tests with the given tag
-<tag> run just tests without the given tag
=head1 EXAMPLE
$ shindont <some_test_directory> +<foo>
$ shindont <some_test_directory> -<bar>
$ shindont <some_test_directory> +<foo> -<bar>
=head1 AUTHOR
Copyright 2009 geemus (Wesley Beary) - http://github.com/geemus
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|