/[Frey]/trunk/t/60-a3c-hreduorg.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/t/60-a3c-hreduorg.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 109 by dpavlin, Sun Jul 13 13:09:56 2008 UTC revision 111 by dpavlin, Sun Jul 13 16:17:34 2008 UTC
# Line 4  use warnings; Line 4  use warnings;
4    
5  my $debug = shift @ARGV;  my $debug = shift @ARGV;
6    
7  use Test::More tests => 15;  use Test::More tests => 18;
8  use lib 'lib';  use lib 'lib';
9    
10  #use Devel::LeakTrace::Fast;  #use Devel::LeakTrace::Fast;
# Line 19  isa_ok( $u, 'A3C::HrEduOrg' ); Line 19  isa_ok( $u, 'A3C::HrEduOrg' );
19    
20  diag dump( $u ) if $debug;  diag dump( $u ) if $debug;
21    
22  ok( my $i = $u->collection( { limit => 10, offset => 3 } ), 'collection' );  ok( my ($i,$pager) = $u->collection( { per_page => 10, page => 2 } ), 'collection' );
23  isa_ok( $i, 'Fey::Object::Iterator' );  isa_ok( $i, 'Fey::Object::Iterator' );
   
24  diag dump( $i ) if $debug;  diag dump( $i ) if $debug;
25    
26    isa_ok( $pager, 'Data::Page' );
27    cmp_ok( $pager->first, '==', 11 );
28    cmp_ok( $pager->last, '==', 20 );
29    
30  while ( $u = $i->next ) {  while ( $u = $i->next ) {
31          isa_ok( $u, 'A3C::HrEduOrg' );          isa_ok( $u, 'A3C::HrEduOrg' );
32  }  }

Legend:
Removed from v.109  
changed lines
  Added in v.111

  ViewVC Help
Powered by ViewVC 1.1.26