| Module-New documentation | Contained in the Module-New distribution. |
Module::New::File::Test
a template for a general test.
Kenichi Ishigaki, <ishigaki at cpan.org>
Copyright (C) 2007-2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Module-New documentation | Contained in the Module-New distribution. |
package Module::New::File::Test; use strict; use warnings; use Module::New::File; file '{MAINFILE}' => content { return <<'EOT'; use strict; use warnings; use Test::More qw(no_plan); ok 1; EOT }; 1; __END__