NAME
    TOBYINK::Test::Template - Skeleton distribution for testing purposes

SYNOPSIS
      use Test2::V0;
      use TOBYINK::Test::Template;
  
      my $o = TOBYINK::Test::Template->new( foo => 'Hello' );
      is( $o->foo_bar, 'Hello' );
  
      $o->bar( 'world' );
      is( $o->foo_bar, 'Hello world' );
  
      done_testing;

DESCRIPTION
    Demonstration of testing setup.

BUGS
    Please report any bugs to
    <https://github.com/tobyink/p5-tobyink-test-template/issues>.

SEE ALSO
    <https://toby.ink/blog/2023/01/24/perl-testing-in-2023/>.

AUTHOR
    Toby Inkster <tobyink@cpan.org>.

COPYRIGHT AND LICENCE
    This software is copyright (c) 2023 by Toby Inkster.

    This is free software; you can redistribute it and/or modify it under the
    same terms as the Perl 5 programming language system itself.

DISCLAIMER OF WARRANTIES
    THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
    WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
    MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.