Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37415619
en ru br
ALT Linux repos
S:1.60-alt1.1
5.0: 1.22-alt1
4.1: 1.10-alt0.1
4.0: 1.10-alt0.1

Group :: Development/Perl
RPM: perl-Test-WWW-Mechanize

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 1.60-alt1.1
Build date: 24 december 2022, 03:08 ( 69.0 weeks ago )
Size: 40.53 Kb

Home page:   http://search.cpan.org/dist/Test-WWW-Mechanize/

License: Artistic
Summary: Test-WWW-Mechanize - Testing-specific WWW::Mechanize subclass
Description:

Test::WWW::Mechanize is a subclass of WWW::Mechanize that incorporates
features for web application testing.  For example:

   $mech->get_ok( $page );
   $mech->title_is( "Invoice Status", "Make sure we're on the invoice page" );
   $mech->content_contains( "Andy Lester", "My name somewhere" );
   $mech->content_like( qr/(cpan|perl)\.org/, "Link to perl.org or CPAN" );

This is equivalent to:

   $mech->get( $page );
   ok( $mech->success );
   is( $mech->title, "Invoice Status", "Make sure we're on the invoice page" );
   ok( index( $mech->content, "Andy Lester" ) >= 0, "My name somewhere" );
   like( $mech->content, qr/(cpan|perl)\.org/, "Link to perl.org or CPAN" );

but has nicer diagnostics if they fail.

Current maintainer: Vitaly Lipatov

List of contributors

List of rpms provided by this srpm:

  • perl-Test-WWW-Mechanize
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin