Test::Pretty - Yes! PrettyCure 5!
use Test::Pretty;Test::Pretty is a prettifier for Test::More.
When you are writing a test case such as following:
use strict;
use warnings;
use utf8;
use Test::More;
subtest 'MessageFilter' => sub {
my $filter = MessageFilter->new('foo');
subtest 'should detect message with NG word' => sub {
ok($filter->detect('hello from foo'));
};
subtest 'should not detect message without NG word' => sub {
ok(!$filter->detect('hello world!'));
};
};
done_testing;This code outputs following result:
Yes, it's not readable. Test::Pretty makes this result to pretty.
You can enable Test::Pretty by
use Test::Pretty;Or just add following option to perl interpreter.
-MTest::PrettyAfter this, you can get a following prerty output.
Tokuhiro Matsuno <tokuhirom AAJKLFJEF@ GMAIL COM>
Some code was taken from Test::Name::FromLine, thanks cho45++
Copyright (C) Tokuhiro Matsuno
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

