Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37424207
en ru br
Репозитории ALT
S:1.60-alt1.1
5.1: 1.22-alt1
4.1: 1.10-alt0.1
4.0: 1.10-alt0.1
www.altlinux.org/Changes

Группа :: Разработка/Perl
Пакет: perl-Test-WWW-Mechanize

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Текущая версия: 1.60-alt1.1
Время сборки: 24 декабря 2022, 03:08 ( 69.0 недели назад )
Размер архива: 40.53 Kb

Домашняя страница:   http://search.cpan.org/dist/Test-WWW-Mechanize/

Лицензия: Artistic
О пакете: Test-WWW-Mechanize - Testing-specific WWW::Mechanize subclass
Описание:

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.

Текущий майнтейнер: Vitaly Lipatov

Список всех майнтейнеров, принимавших участие
в данной и/или предыдущих сборках пакета:

Список rpm-пакетов, предоставляемый данным srpm-пакетом:

  • perl-Test-WWW-Mechanize
ACL:
     
    дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    текущий майнтейнер: Michael Shigorin