------------------------------------------------------------------------ 0.0501 | Piotr Roszatycki | 2009-01-02 Fixes: * Removed cyclic dependency on Exception::Died. ------------------------------------------------------------------------ 0.05 | Piotr Roszatycki | 2009-01-01 New: * New methods "assert_not_isa". Changes: * Safe "isa" method is used with eval which doesn't fail if $SIG{__DIE__} is changed. * Requires constant::boolean. ------------------------------------------------------------------------ 0.04 | Piotr Roszatycki | 2008-12-20 New: * New export tag ':assert' exports all "assert_*" functions and "ASSERT" constant. Changes: * Test::Assert::ASSERT replaces Test::Assert::DEBUG. * Exception::Assert replaces the "ignore_packages" attribute with own value. * Requires Exception::Base >= 0.21. ------------------------------------------------------------------------ 0.03 | Piotr Roszatycki | 2008-12-10 New: * Test::Assert::DEBUG is true if Test::Assert is used in main package. * DEBUG constant can be exported. package My::Class; use Test::Assert ':all', 'DEBUG'; assert_true( 0 ) if DEBUG; * New method "assert_isa". my $obj = My::Class->new; assert_isa( 'My::Class', $obj ); * Build requires parent. ------------------------------------------------------------------------ 0.02 | Piotr Roszatycki | 2008-12-05 Changes: * Requires Exception::Base >= 0.20. ------------------------------------------------------------------------ 0.01 | Piotr Roszatycki | 2008-10-13 * Initial release. ------------------------------------------------------------------------