The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Test::Named - Perl extension for named tests. Inspired on this:

http://www.modernperlbooks.com/mt/2013/05/running-named-perl-tests-from-prove.html

SYNOPSIS

  # load your fav test harness
  use Test::More tests => 3;
  use Test::Named;

  # load module to test
  use_ok(Foo::Bar);

  # run all tests unless named test specified
  exit main( @ARGV );

  # named tests are declared using test_ prefix
  sub test_foo {
    ...
  }
  sub test_bar {

  }
  etc..

  prove -v -I lib/ t/*
  prove -v -I lib/ t/TestFile.t
  prove -v -I lib/ t/TestFile.t :: foo
  prove -v -I lib/ t/TestFile.t :: bar

DESCRIPTION

This module is a very thin wrapper that allows easy named testing much like JUnit-based testing frameworks.

EXPORT

This module exports a subroutine named main()

SEE ALSO

https://github.com/aimass/Test-Named

AUTHOR

Alejandro Imass, https://github.com/aimass

COPYRIGHT AND LICENSE

Copyright (C) 2022 by Alejandro Imass

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.35.10 or, at your option, any later version of Perl 5 you may have available.