Changeset 43988 for branches/5.0/tests/phpunit/tests/functions.php
- Timestamp:
- 12/12/2018 11:00:06 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/tests/phpunit/tests/functions.php
r42452 r43988 1116 1116 'big5.jpg', 1117 1117 array( 1118 'ext' => 'jpg',1119 'type' => 'image/jpeg',1118 'ext' => false, 1119 'type' => false, 1120 1120 'proper_filename' => false, 1121 1121 ), … … 1125 1125 DIR_TESTDATA . '/export/crazy-cdata.xml', 1126 1126 'crazy-cdata.xml', 1127 array( 1128 'ext' => false, 1129 'type' => false, 1130 'proper_filename' => false, 1131 ), 1132 ), 1133 // Non-image file not allowed even if it's named like one. 1134 array( 1135 DIR_TESTDATA . '/export/crazy-cdata.xml', 1136 'crazy-cdata.jpg', 1137 array( 1138 'ext' => false, 1139 'type' => false, 1140 'proper_filename' => false, 1141 ), 1142 ), 1143 // Non-image file not allowed if it's named like something else. 1144 array( 1145 DIR_TESTDATA . '/export/crazy-cdata.xml', 1146 'crazy-cdata.doc', 1127 1147 array( 1128 1148 'ext' => false,
Note: See TracChangeset
for help on using the changeset viewer.