NAME

Test::Mojo::Most - Combine various Test::Mojo modules into one, a bit like Test::Most but for Mojo

SYNOPSIS

use strict;
use warnings;
use Test::Most;
use Test::Mojo::Most;

my $t = Test::Mojo::Most->new;
$t->get_ok( ... )
	# from Test::Mojo
	->status_is( ... )
	# from Test::Mojo::Session
	->session_has( ... )
	# from Test::Mojo::More
	->cookie_has( ... )
	# from Test::Mojo::Trim
	->trimmed_content_is( ... )
	# and so on
;

done_testing();

DESCRIPTION

Test::Mojo::Most is an extension for Test::Mojo, it inherits all methods from Test::Mojo, Test::Mojo::Session, Test::Mojo::Trim, and Test::Mojo::More. It will add more Test::Mojo:: modules as they become available

SEE ALSO

Test::Mojo

Test::Mojo::Session

Test::Mojo::More

Test::Mojo::Trim

AUTHOR INFORMATION

Lee Johnson - leejo@cpan.org

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. If you would like to contribute documentation please raise an issue / pull request:

https://github.com/leejo/test-mojo-most

BUGS

Please raise issues: https://github.com/leejo/test-mojo-most/issues