Skip to content

Commit

Permalink
sync tests
Browse files Browse the repository at this point in the history
  • Loading branch information
doy committed Aug 30, 2011
1 parent c859eb7 commit 71983b4
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions t/001-is-class-loaded.t
Expand Up @@ -20,17 +20,12 @@ do {
};
ok(is_class_loaded('Class::Load::WithISA'), "class that defines \@ISA is loaded");
# }}}
# $ISA (yes, sadly, but only with the PP version) {{{
# $ISA (no) {{{
do {
package Class::Load::WithScalarISA;
our $ISA = 'Class::Load';
};
if ($Class::Load::IMPLEMENTATION eq 'PP') {
ok(is_class_loaded('Class::Load::WithScalarISA'), "class that defines \$ISA is loaded");
}
else {
ok(!is_class_loaded('Class::Load::WithScalarISA'), "class that defines \$ISA is not loaded");
}
ok(!is_class_loaded('Class::Load::WithScalarISA'), "class that defines \$ISA is not loaded");
# }}}
# $VERSION (yes) {{{
do {
Expand Down

0 comments on commit 71983b4

Please sign in to comment.