Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 200_examples / 008_record_set_iterator.t
index d290b73..aebe61c 100644 (file)
@@ -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;
+
+
+
+
+
+
+
+
+
+