Add another test case for shorthand to integer
authorChad Horohoe <demon@users.mediawiki.org>
Sun, 16 Oct 2011 22:24:13 +0000 (22:24 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Sun, 16 Oct 2011 22:24:13 +0000 (22:24 +0000)
tests/phpunit/includes/GlobalFunctions/wfShorthandToInteger.php

index 9b48e9b..d3c33f2 100644 (file)
@@ -18,6 +18,7 @@ class wfShorthandToIntegerTest extends MediaWikiTestCase {
                        array( '     ', -1, 'String of spaces' ),
                        array( '1G', 1024 * 1024 * 1024, 'One gig uppercased' ),
                        array( '1g', 1024 * 1024 * 1024, 'One gig lowercased' ),
+                       array( '1M', 1024 * 1024, 'One meg uppercased' ),
                );
        }