Sisyphus repositório
Última atualização: 1 outubro 2023 | SRPMs: 18631 | Visitas: 37482876
en ru br
ALT Linux repositórios
S:1.60-alt1.1
5.0: 1.22-alt1
4.1: 1.10-alt0.1
4.0: 1.10-alt0.1

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

 Principal   Changelog   Spec   Patches   Sources   Download   Gear   Bugs e FR  Repocop 

A versão atual: 1.60-alt1.1
Data da compilação: 24 dezembro 2022, 03:08 ( 69.5 weeks ago )
Tamanho:: 40.53 Kb

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

Licença: Artistic
Sumário: Test-WWW-Mechanize - Testing-specific WWW::Mechanize subclass
Descrição:

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.

Mantenedor currente: Vitaly Lipatov

Lista dos contribuidores

Lista dos rpms provida por esta srpm:

  • perl-Test-WWW-Mechanize
ACL:
     
    projeto & código: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    mantenedor atual: Michael Shigorin
    mantenedor da tradução: Fernando Martini aka fmartini © 2009