Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 200_examples / 001_example.t
index e6a4a2d..515fc1a 100644 (file)
@@ -1,15 +1,11 @@
 #!/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 => 20;
 use Test::Exception;
 
-
 ## Roles
 
 {
@@ -128,4 +124,3 @@ 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;