Skip Menu |

This queue is for tickets about the TAP-Formatter-HTML CPAN distribution.

Report information
The Basics
Id: 85549
Status: open
Priority: 0/
Queue: TAP-Formatter-HTML

People
Owner: Nobody in particular
Requestors: jswitzer [...] shastaqa.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: All output from subtests is formatted as unknown
Date: Wed, 22 May 2013 11:21:35 -0700
To: bug-TAP-Formatter-HTML [...] rt.cpan.org
From: James Switzer <jswitzer [...] shastaqa.com>
All the output from subtests is formatted as unknown output which makes it harder to read. This can be reproduced with a simple test like this: use Test::More subtest "I'm a subtest" => sub { ok(1, "I pass"); ok(0, "I fail"); diag "I tell you why"; }
On 2013-05-22 14:22:14, jswitzer@shastaqa.com wrote: Show quoted text
> All the output from subtests is formatted as unknown output which makes it > harder to read. This can be reproduced with a simple test like this: > > use Test::More > > subtest "I'm a subtest" => sub { > ok(1, "I pass"); > ok(0, "I fail"); > diag "I tell you why"; > }
Additionally, it would be nice if the subtest output was indented. Currently the spaces are there in the generated HTML, but they are not significant (i.e. something like white-space:pre or so has to be used).