Tagged Questions

15
votes
9answers
772 views

What do you need from a test harness?

I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their ...
3
votes
2answers
876 views

Test Anything Protocol in Shell scripts

Has anyone seen, tried to implement, or otherwise played with TAP in shell? We're looking to create unit tests across many languages (don't get me started on why this doesn't exist so far), and since ...
2
votes
1answer
183 views

How to build unit tests in Guile, which output to the TAP standard?

I would like to have a Guile script, which implements functions, which output test result messages according to the TAP protocol.
1
vote
1answer
60 views

Setting TAP::Formatter::JUnit output filenames

Currently, running prove with TAP::Formatter::JUnit supports an environment variable PERL_TEST_HARNESS_DUMP_TAP that sets a path where a directory t/ will be created, and for each test file x, new ...
0
votes
2answers
82 views

Ruby “test/unit” , how do I display the messages in asserts

I have assertions in place in my ruby script. Each of these assertions also has a message to describe the assertion. So I have two questions revolving around this I want the messages associated ...
0
votes
1answer
116 views

Is there any working example of “pytap” TAP emitter for Python

if we look at like in example 3: #TEST SOME STUFF from TAP.Simple import * plan(3) def in_between(value, bottom, top, msg): ret = ok(((bottom = value) and (value = top)), msg) if (not ...