App-Rssfilter
view release on metacpan or search on metacpan
t/lib/App/Rssfilter/Group/Test/UpdatedGroup.pm view on Meta::CPAN
use strict;
use warnings;
package App::Rssfilter::Group::Test::UpdatedGroup;
use Test::Routine;
use Test::More;
use namespace::autoclean;
use Method::Signatures;
requires 'do_update';
requires 'group';
requires 'mock_group';
requires 'path_pushed_storage';
requires 'rules_for_update';
before 'do_update' => method( $group ) {
$group->add_group( $self->mock_group );
};
test updated_group => method {
$self->mock_group->called_ok( 'update', 'called update on nested group ...');
my (undef, %group_update_args) = $self->mock_group->call_args(0);
is_deeply(
$group_update_args{storage},
$self->path_pushed_storage,
'... and passed path_push storage to nested group when updating'
);
my @rules_to_check = map { @{ $_ } } $self->rules_for_update, $self->group->rules;
is_deeply(
$group_update_args{rules},
\@rules_to_check,
'... and passed its rules to nested feed when updating'
);
};
1;
( run in 0.953 second using v1.01-cache-2.11-cpan-39bf76dae61 )