Tap Out

Website | Development

Copyright

2010 Thomas Sawyer, Rubyworks

License

BSD-2-Clause

Status

<img src=“http://travis-ci.org/rubyworks/tapout.png” />

DESCRIPTION

TapOut is a TAP handler. TapOut supports TAP-Y/J as well as traditional TAP.

TAP-Y/J is a modernization of TAP using pure YAML/JSON streams. Traditional TAP has less detail than TAP-Y/J, but it can still be translated with fairly good results. TapOut includes a TAP adapter to handle the translation transparently. Current TapOut support TAP v12 with minor limitations.

To learn about the TAP-Y/J specification, see the TAP-YJ.rdoc file.

For information about TAP, see testanything.org/wiki/index.php/Main_Page.

SYNOPSIS

Using a test framework that produces a TAP-Y output stream, simply pipe the stream into ‘tapout`.

$ ruby-test -y -Ilib test/foo.rb | tapout

TapOut supports a variety of output formats. These are selectable via the first argument. The default if not given, as in the example above, is ‘dotprogress`.

$ ruby-test -y -Ilib test/foo.rb | tapout progessbar

TapOut is smart enough to match the closest matching format name. So, for example, the above could be written as:

$ ruby-test -y -Ilib test/foo.rb | tapout pro

And tapout will know to use the ‘progressbar` format.

To see a list of supported formats use the list subcommand:

$ tapout --help

If your test framework does not support TAP-Y, but does support traditional TAP, TapOut will automatically recognize the difference by TAP’s ‘1..N` header.

$ ruby-test -ftap -Ilib test/foo.rb | tapout progressbar

COPYRIGHTS

TapOut, Copyright © 2010 Thomas Sawyer

TapOut is licensed under the terms of the FreeBSD license.

See COPYING.rdoc and LICENSE.txt for details.