Add a test for capitalization to the data provider
authorMark A. Hershberger <mah@users.mediawiki.org>
Sat, 23 Oct 2010 16:41:49 +0000 (16:41 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Sat, 23 Oct 2010 16:41:49 +0000 (16:41 +0000)
maintenance/tests/phpunit/includes/SampleTest.php

index 065b98a..b670778 100644 (file)
@@ -32,6 +32,7 @@ class TestSample extends PHPUnit_Framework_TestCase {
                return array(
                        array( 'Text', NS_MEDIA, 'Media:Text' ),
                        array( 'Text', null, 'Text' ),
+                       array( 'text', null, 'Text' ),
                        array( 'Text', NS_USER, 'User:Text' ),
                        array( 'Text', NS_USER, 'Blah' )
                );