diff options
author | Peter J. Acklam) (via RT <perlbug-followup@perl.org> | 2011-01-06 23:14:45 -0800 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2011-01-07 11:19:58 +0100 |
commit | 93f09d7ba52fad6ba827274ee4fa13235edb2b44 (patch) | |
tree | d37f89d97bcd3531beefe5a174c8dcaf896a52c0 /t/mro | |
parent | f858446f8d2c74c0a4665f0be04b65fe90e1b08c (diff) | |
download | perl-93f09d7ba52fad6ba827274ee4fa13235edb2b44.tar.gz |
Fix typos (spelling errors) in t/*.
# New Ticket Created by (Peter J. Acklam)
# Please include the string: [perl #81916]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=81916 >
Diffstat (limited to 't/mro')
-rw-r--r-- | t/mro/basic.t | 2 | ||||
-rw-r--r-- | t/mro/basic_01_c3.t | 2 | ||||
-rw-r--r-- | t/mro/basic_01_dfs.t | 2 | ||||
-rw-r--r-- | t/mro/next_edgecases.t | 2 | ||||
-rw-r--r-- | t/mro/next_method.t | 2 | ||||
-rw-r--r-- | t/mro/next_skip.t | 2 | ||||
-rw-r--r-- | t/mro/pkg_gen.t | 2 | ||||
-rw-r--r-- | t/mro/recursion_c3.t | 2 | ||||
-rw-r--r-- | t/mro/recursion_dfs.t | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/t/mro/basic.t b/t/mro/basic.t index b42c802b49..9955b813b6 100644 --- a/t/mro/basic.t +++ b/t/mro/basic.t @@ -60,7 +60,7 @@ ok(mro::is_universal('MRO_B')); ok(!mro::is_universal('MRO_B')); # is_universal, get_mro, and get_linear_isa should -# handle non-existant packages sanely +# handle non-existent packages sanely ok(!mro::is_universal('Does_Not_Exist')); is(mro::get_mro('Also_Does_Not_Exist'), 'dfs'); ok(eq_array( diff --git a/t/mro/basic_01_c3.t b/t/mro/basic_01_c3.t index 2bcb22556a..bf32dd3edd 100644 --- a/t/mro/basic_01_c3.t +++ b/t/mro/basic_01_c3.t @@ -7,7 +7,7 @@ require q(./test.pl); plan(tests => 4); =pod -This tests the classic diamond inheritence pattern. +This tests the classic diamond inheritance pattern. <A> / \ diff --git a/t/mro/basic_01_dfs.t b/t/mro/basic_01_dfs.t index dfa6d3b982..c4ea2be199 100644 --- a/t/mro/basic_01_dfs.t +++ b/t/mro/basic_01_dfs.t @@ -7,7 +7,7 @@ require q(./test.pl); plan(tests => 4); =pod -This tests the classic diamond inheritence pattern. +This tests the classic diamond inheritance pattern. <A> / \ diff --git a/t/mro/next_edgecases.t b/t/mro/next_edgecases.t index c0da963ede..7402ec90ad 100644 --- a/t/mro/next_edgecases.t +++ b/t/mro/next_edgecases.t @@ -54,7 +54,7 @@ plan(tests => 12); can_ok($bar, 'bar'); my $value = eval { $bar->bar() }; - ok(!$@, '... calling bar() succedded') || diag $@; + ok(!$@, '... calling bar() succeeded') || diag $@; is($value, 'Foo::bar', '... got the right return value too'); } diff --git a/t/mro/next_method.t b/t/mro/next_method.t index ffeda1e37a..b7379177d4 100644 --- a/t/mro/next_method.t +++ b/t/mro/next_method.t @@ -7,7 +7,7 @@ require q(./test.pl); plan(tests => 5); =pod -This tests the classic diamond inheritence pattern. +This tests the classic diamond inheritance pattern. <A> / \ diff --git a/t/mro/next_skip.t b/t/mro/next_skip.t index 42a276e8e6..1614855de0 100644 --- a/t/mro/next_skip.t +++ b/t/mro/next_skip.t @@ -7,7 +7,7 @@ require q(./test.pl); plan(tests => 10); =pod -This tests the classic diamond inheritence pattern. +This tests the classic diamond inheritance pattern. <A> / \ diff --git a/t/mro/pkg_gen.t b/t/mro/pkg_gen.t index 0d319fad48..e236ea911a 100644 --- a/t/mro/pkg_gen.t +++ b/t/mro/pkg_gen.t @@ -14,7 +14,7 @@ require mro; } ok(!mro::get_pkg_gen('ReallyDoesNotExist'), - "pkg_gen 0 for non-existant pkg"); + "pkg_gen 0 for non-existent pkg"); my $f_gen = mro::get_pkg_gen('Foo'); ok($f_gen > 0, 'Foo pkg_gen > 0'); diff --git a/t/mro/recursion_c3.t b/t/mro/recursion_c3.t index cc45250714..cd1db3355a 100644 --- a/t/mro/recursion_c3.t +++ b/t/mro/recursion_c3.t @@ -62,7 +62,7 @@ into an infinite loop our @ISA = qw//; } -# A series of 8 abberations that would cause infinite loops, +# A series of 8 aberations that would cause infinite loops, # each one undoing the work of the previous my @loopies = ( sub { @E::ISA = qw/F/ }, diff --git a/t/mro/recursion_dfs.t b/t/mro/recursion_dfs.t index b7bf6d42cd..ddb4d31a08 100644 --- a/t/mro/recursion_dfs.t +++ b/t/mro/recursion_dfs.t @@ -49,7 +49,7 @@ into an infinite loop our @ISA = qw//; } -# A series of 8 abberations that would cause infinite loops, +# A series of 8 aberations that would cause infinite loops, # each one undoing the work of the previous my @loopies = ( sub { @E::ISA = qw/F/ }, |