wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions
Daniel Friesen 57c8fe18c7 Update wfArrayToCGI and wfCgiToArray:
- 'foo' => '' now outputs "&foo=" instead of the key being omitted
- 'foo' => null and 'foo' => false now omit the key instead of outputting "&foo="
- Added a test to make sure that 'foo' => true outputs "&foo=1"
- Fixed a php notice caused when passing a =value-less bit like "&qwerty" to wfCgiToArray by treating it like php and extracting it as 'qwerty' => ''
- Updated tests
2011-12-11 18:25:23 +00:00
..
GlobalTest.php Update wfArrayToCGI and wfCgiToArray: 2011-12-11 18:25:23 +00:00
GlobalWithDBTest.php FU r100915: split out GlobalWithDBTest (tests which need the DB) 2011-10-27 20:54:27 +00:00
README Followup r91087, rename directory 2011-06-30 16:41:50 +00:00
wfAssembleUrlTest.php Add wfAssembleUrl and unit tests. This is the next step towards fixing 2011-11-15 17:38:20 +00:00
wfExpandUrlTest.php "else if" to "elseif" 2011-11-25 00:15:27 +00:00
wfRemoveDotSegmentsTest.php Follow-up r102587. Add details to comments and add a couple more tests. 2011-11-10 18:02:38 +00:00
wfShorthandToIntegerTest.php Move tests that have likely never been executed. Now they will be executed. 2011-11-09 23:11:52 +00:00
wfUrlencodeTest.php Make wfUrlEncode(null) reset the static. Two skipped tests work now. 2011-07-23 20:14:12 +00:00

This directory hold tests for includes/GlobalFunctions.php file
which is a pile of functions.