Search Results

2
votes

Conventions for Perl Test::More module

If you are looking for more XUnit-style testing, check out Test::Class. It provides the Test(setup) and Te …
1
vote

TAP for NUnit?

Seems unlikely to me, since there is an impedance mismatch. TAP has no concept for what NUnit calls a test, and what TAP calls a test usually corresponds to an NUnit assertion, but not precisely. S …
8
votes

Why do my Perl tests fail with `use encoding ‘utf8’`?

Do not use the encoding pragma. It’s broken. (Juerd Waalboer gave a great talk where he mentioned th …