package Test2::Manual::Testing::Introduction;
use strict;
use warnings;
our $VERSION = '1.302225';
1;
__END__
=head1 NAME
Test2::Manual::Testing::Introduction - Introduction to testing with Test2.
=head1 DESCRIPTION
This tutorial is a beginners introduction to testing. This will take you
through writing a test file, making assertions, and running your test.
=head1 BOILERPLATE
=head2 THE TEST FILE
Test files typically are placed inside the C directory, and end with the
C<.t> file extension.
C:
use Test2::V1 -ipP;
# Assertions will go here
done_testing;
This is all the boilerplate you need.
=over 4
=item C