fix typo in docs: . instead of ;
[gitmo/Moose.git] / t / 200_examples / 001_example.t
index d7dd836..a08aa38 100644 (file)
@@ -3,9 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 20;
-use Test::Exception;
-
+use Test::More;
 
 
 ## Roles
@@ -126,3 +124,4 @@ ok($at_least_10_chars->does('Constraint::OnLength'), '... Constraint::LengthAtLe
 ok(!defined($at_least_10_chars->validate('barrrrrrrrr')), '... validated correctly');
 is($at_least_10_chars->validate('bar'), 'must be at least 10 chars', '... validation failed correctly');
 
+done_testing;