The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Perl distribution Test-Class-Moose

0.22 2013-08-17
        - Renamed tutorial from .pod to .pm to stop both cpan and metacpan
          from replacing main documentation with the tutorial.

0.21 2013-08-15
        - Fold on .t test into t/tags.t. Cleaner and stops some CPAN testers
          failures.

0.20 2013-08-15
        - Fix bug #87801 where excluded tags were ANDed instead of ORed.
          Stefan Corneliu Petrea.
        - The beginnings of a tutorial by Doug Bell (preaction)
        - Doc fix by Olaf Alders.
        - Tag inheritance added by Paul Boyd (see
          https://github.com/Ovid/test-class-moose/pull/10). This change is
          slightly backwards-incompatible, but not many people were yet using
          this module (or tags).

0.12 2013-05-27
        - Bugfix: test_classes attribute to constructor is allowed to be
          undef or an empty array ref.
        - add_to_plan() is now deprecated. Use plan() instead. This solves the
          problem where you might also have a before modifier wanting to alter
          the plan.

0.11 2013-05-19
        - Added the test_classes attribute to the contructor. Allows you to
          easily control which classes you wish to run.

0.10 2013-05-08
        - Sigh. Skip All tag tests if we can't define tags.

0.09 2013-05-07
        - Emergency bug fix: don't require Sub::Attribute if they cannot load
          it.

0.08 2013-05-06
        - Add tag support.
        - Clean up how start and end times for timing is handled.

0.07 2013-04-07
        - The $test_suite object now has the time() method.
        - Fully document report methods
        - Marked a bunch of "trusted" methods as effectively private.
        - Rename tests_run() to num_tests_run() (internal consistency)
        - Rename test_reporting() to test_report() (test_reporting() is now
          deprecated)
        - Rename ::Reporting classes to ::Report
        - Allow plans in methods. See #84046 in RT queue (Steffen W)
        - Convert to Dist::Zilla
        - Runtests returns $self.

0.06 2013-03-17
        - Fix the MANIFEST again. That's it. After this I'm switching to
          Dist::Zilla.

0.05 2013-03-17
        - Even if attributes start with test_, they cannot be test methods.
        - Add AutoUse to the MANIFEST :/

0.04 2013-03-17
        - Fix test inheritance bug.

0.03 2013-03-16
        - Add Test::Class::Moose::Role::AutoUse (automatically loads your
          actual classes)

0.02 2013-01-29
        - Add class/method skipping. 
        - Rename almost every overrideable method to /^test_/.
        - Add a time reporting class. You can now fetch real, user and system
          time for each class or test method.
        - Fix for errors when no test methods found (they should be skipped -
          beresfordt)
        - Don't use a bare qw() for parens (reported on github by beresfordt)
        - Make sure we have hi-res time reporting
        - Move statistics gathering into its own classes
        - Add include/exclude test method filtering
        - Skip a test class if we don't find any test methods
        - Most attributes pushed into Test::Class::Moose::Config
        - Added "randomize" attribute per Udo Oji.

0.01 2012-12-18
        - Test::Class + Moose