~ubuntu-branches/ubuntu/trusty/libtest-roo-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/cookbook/test-pcr.pl

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2014-01-14 19:25:11 UTC
  • Revision ID: package-import@ubuntu.com-20140114192511-9ycl4dc1zgamfnek
Tags: upstream-1.002
ImportĀ upstreamĀ versionĀ 1.002

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use Test::Roo;
 
2
 
 
3
use lib 'lib';
 
4
 
 
5
with 'IteratorTest';
 
6
 
 
7
run_me(
 
8
    {
 
9
        iterator_class => 'Path::Class::Rule',
 
10
        result_type    => 'Path::Class::Entity',
 
11
    },
 
12
);
 
13
 
 
14
done_testing;