[Moose-commits] r7755 - Class-MOP/trunk/t
autarch at code2.0beta.co.uk
autarch at code2.0beta.co.uk
Fri Feb 20 18:23:31 GMT 2009
Author: autarch
Date: 2009-02-20 10:23:31 -0800 (Fri, 20 Feb 2009)
New Revision: 7755
Modified:
Class-MOP/trunk/t/017_add_method_modifier.t
Log:
Spell withdrawal correctly
Modified: Class-MOP/trunk/t/017_add_method_modifier.t
===================================================================
--- Class-MOP/trunk/t/017_add_method_modifier.t 2009-02-20 18:23:12 UTC (rev 7754)
+++ Class-MOP/trunk/t/017_add_method_modifier.t 2009-02-20 18:23:31 UTC (rev 7755)
@@ -90,7 +90,7 @@
}
'... 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 @@
}
'... 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 @@
}
'... 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' );
More information about the Moose-commits
mailing list