/[Frey]/trunk/t/50-strix-user.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/50-strix-user.t

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

trunk/t/10-strix-user.t revision 7 by dpavlin, Sat Jun 28 18:37:13 2008 UTC trunk/t/50-strix-user.t revision 969 by dpavlin, Fri Jan 9 16:02:33 2009 UTC
# Line 2  Line 2 
2  use strict;  use strict;
3  use warnings;  use warnings;
4    
5  my $debug = shift @ARGV;  my $debug = @ARGV ? 1 : 0;
6    
7  use Test::More tests => 3;  use Test::More tests => 10;
8  use lib 'lib';  use lib 'lib';
9    
10  #use Devel::LeakTrace::Fast;  #use Devel::LeakTrace::Fast;
# Line 17  BEGIN { Line 17  BEGIN {
17  ok( my $u = Strix::User->new( id => 1 ), 'new' );  ok( my $u = Strix::User->new( id => 1 ), 'new' );
18  isa_ok( $u, 'Strix::User' );  isa_ok( $u, 'Strix::User' );
19    
20  diag dump( $u );  diag dump( $u ) if $debug;
21    
22    ok( my $i = $u->collection(), 'collection without pager' );
23    isa_ok( $i, 'Fey::Object::Iterator' );
24    
25    diag dump( $i ) if $debug;
26    
27    ok( my $r = $u->total_entries, 'total_entries' );
28    diag "total_entries: $r"; # if $debug;
29    
30    my $max = 3;
31    
32    while ( my $row = $i->next ) {
33            isa_ok( $row, 'Strix::User' );
34            last if --$max == 0;
35    }
36    

Legend:
Removed from v.7  
changed lines
  Added in v.969

  ViewVC Help
Powered by ViewVC 1.1.26