From: Dave Rolsky Date: Fri, 20 Feb 2009 18:23:31 +0000 (+0000) Subject: Spell withdrawal correctly X-Git-Tag: 0.77_01~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6c681a5bff5cfd0114564b373360d735450e3458;p=gitmo%2FClass-MOP.git Spell withdrawal correctly --- diff --git a/t/017_add_method_modifier.t b/t/017_add_method_modifier.t index c116c0b..788dac0 100644 --- a/t/017_add_method_modifier.t +++ b/t/017_add_method_modifier.t @@ -90,7 +90,7 @@ lives_ok { } '... withdrew from savings successfully'; is( $savings_account->balance, 200, - '... got the right savings balance after withdrawl' ); + '... got the right savings balance after withdrawal' ); dies_ok { $savings_account->withdraw(250); } @@ -117,9 +117,9 @@ lives_ok { } '... withdrew from checking successfully'; is( $checking_account->balance, 50, - '... got the right checkings balance after withdrawl' ); + '... got the right checkings balance after withdrawal' ); is( $savings_account->balance, 350, - '... got the right savings balance after checking withdrawl (no overdraft)' + '... got the right savings balance after checking withdrawal (no overdraft)' ); lives_ok { @@ -127,7 +127,7 @@ lives_ok { } '... withdrew from checking successfully'; is( $checking_account->balance, 0, - '... got the right checkings balance after withdrawl' ); + '... got the right checkings balance after withdrawal' ); is( $savings_account->balance, 200, - '... got the right savings balance after overdraft withdrawl' ); + '... got the right savings balance after overdraft withdrawal' );