Fix typo in test description
[gitmo/Moose.git] / t / cmop / random_eval_bug.t
CommitLineData
38bf2a25 1use strict;
2use warnings;
3
4use Test::More;
5
6use Class::MOP;
7
8=pod
9
10This tests a bug which is fixed in 0.22 by
11localizing all the $@'s around any evals.
12This a real pain to track down.
13
14Moral of the story:
15
16 ALWAYS localize your globals :)
17
18=cut
19
20{
21 package Company;
22 use strict;
23 use warnings;
24 use metaclass;
25
26 sub new {
27 my ($class) = @_;
28 return bless {} => $class;
29 }
30
31 sub employees {
32 die "This didnt work";
33 }
34
35 sub DESTROY {
36 my $self = shift;
37 foreach
38 my $method ( $self->meta->find_all_methods_by_name('DEMOLISH') ) {
39 $method->{code}->($self);
40 }
41 }
42}
43
44eval {
45 my $c = Company->new();
46 $c->employees();
47};
48ok( $@, '... we die correctly with bad args' );
49
50done_testing;