Skip to content

Commit

Permalink
use a fully qualified name in one of the tests that use plugin so we …
Browse files Browse the repository at this point in the history
…have more coverage
  • Loading branch information
lestrrat committed Jan 13, 2011
1 parent 67cf85c commit d490f45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/001_basic/025_pager.t
Expand Up @@ -5,7 +5,8 @@ use Test::More;
my $dbh = t::Utils->setup_dbh;
my $db = Mock::Basic->new({dbh => $dbh});
$db->setup_test_db;
Mock::Basic->load_plugin('Pager');
# use fully qualified package name for coverage
Mock::Basic->load_plugin('+DBIx::Skin::Plugin::Pager');

for my $i (1..32) {
$db->insert(mock_basic => { id => $i, name => 'name_'.$i });
Expand Down

0 comments on commit d490f45

Please sign in to comment.