X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F200_examples%2F008_record_set_iterator.t;fp=t%2F200_examples%2F008_record_set_iterator.t;h=aebe61cc9b0ce34fe6cb7050cf4e6562ddc3556a;hb=9864f0e4ba233c5f30ad6dc7c484ced43d883d27;hp=d290b738fdb683c35a4b00b918b3c006b1bd15fd;hpb=8845df4dd6432e3164d078ade741409061adae9f;p=gitmo%2FMouse.git diff --git a/t/200_examples/008_record_set_iterator.t b/t/200_examples/008_record_set_iterator.t index d290b73..aebe61c 100644 --- a/t/200_examples/008_record_set_iterator.t +++ b/t/200_examples/008_record_set_iterator.t @@ -1,15 +1,13 @@ #!/usr/bin/perl -# This is automatically generated by author/import-moose-test.pl. -# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!! -use t::lib::MooseCompat; use strict; use warnings; -use Test::More; +use Test::More tests => 8; use Test::Exception; + { package Record; use Mouse; @@ -117,4 +115,13 @@ $rsi->get_next_record; is($rsi->first_name, 'Jim', '... got the right first name'); is($rsi->last_name, 'Johnson', '... got the right last name'); -done_testing; + + + + + + + + + +