convert all uses of Test::Exception to Test::Fatal.
[gitmo/Moose.git] / t / 200_examples / 008_record_set_iterator.t
index 0ae80f3..6f050c7 100644 (file)
@@ -3,9 +3,8 @@
 use strict;
 use warnings;
 
-use Test::More tests => 8;
-use Test::Exception;
-
+use Test::More;
+use Test::Fatal;
 
 
 {
@@ -115,13 +114,4 @@ $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;