added test for total_entries on a paged resultset
Alexander Hartmaier [Tue, 19 May 2009 17:07:08 +0000 (17:07 +0000)]
t/67pager.t

index b7bb73f..17b05c3 100644 (file)
@@ -21,6 +21,8 @@ is( $it->pager->next_page, 2, "next_page ok" );
 
 is( $it->count, 3, "count on paged rs ok" );
 
+is( $it->pager->total_entries, 5, "total_entries ok" );
+
 is( $it->next->title, "Caterwaulin' Blues", "iterator->next ok" );
 
 $it->next;