Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/Connector/Iterator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use strict;
use warnings;
use English;
use Moose;
use DateTime;
use Data::Dumper;

extends 'Connector';
Expand Down Expand Up @@ -154,4 +153,4 @@ By default, exceptions from the called connectors bubble up, the loop
over the targets terminate. If set, all connectors are processed and
any exceptions are returned in the result.

=back
=back
4 changes: 3 additions & 1 deletion t/01-builtin-inline.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use English;

use Test::More tests => 17;
use Test::More tests => 19;

use Log::Log4perl;
Log::Log4perl->easy_init( { level => 'ERROR' } );
Expand Down Expand Up @@ -34,6 +34,8 @@ is( $conn->get_size(['foo','nofoo']), 0);

is( $conn->get(['foo','foo', 0 ]), 'baz' );
is( $conn->get(['foo','foo', '0']), 'baz' );
is( $conn->get('foo.foo.0'), 'baz' );
is( $conn->get(['foo','foo', 1 ]), 'bar' );
is( $conn->get(['foo','foo', '8']), undef );

is( $conn->exists('foo.bar'), 1);
Expand Down