Test2::Bundle::More(3) | User Contributed Perl Documentation | Test2::Bundle::More(3) |
Test2::Bundle::More - ALMOST a drop-in replacement for Test::More.
This bundle is intended to be a (mostly) drop-in replacement for Test::More. See "KEY DIFFERENCES FROM Test::More" for details.
use Test2::Bundle::More; ok(1, "pass"); ... done_testing;
This loads Test2::Plugin::ExitSummary.
These are from Test2::Tools::Basic. See Test2::Tools::Basic for details.
These are from Test2::Tools::ClassicCompare. See Test2::Tools::ClassicCompare for details.
These are from Test2::Tools::Class. See Test2::Tools::Class for details.
This is from Test2::Tools::Subtest. It is called "subtest_streamed()" in that package.
use Test2::Bundle::More tests => 5;
Instead you must plan in a separate statement:
use Test2::Bundle::More; plan 5;
isa_ok($thing, $isa, $alt_thing_name);
This was very inconsistent with tools like "can_ok($thing, @subs)".
In Test2::Bundle::More, "isa_ok()" takes a $thing and a list of @isa.
isa_ok($thing, $class1, $class2, ...);
The source code repository for Test2-Suite can be found at https://github.com/Test-More/Test2-Suite/.
Copyright 2018 Chad Granum <exodist@cpan.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/
2020-10-22 | perl v5.34.0 |