Changeset 49082 for trunk/tests/phpunit/tests/rest-api.php
- Timestamp:
- 10/01/2020 02:47:08 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api.php
r48937 r49082 1285 1285 array( 'additional' => array( 'a' => '1' ) ), 1286 1286 ), 1287 'pattern properties' => array( 1288 array( 1289 '$schema' => 'http://json-schema.org/draft-04/schema#', 1290 'type' => 'object', 1291 'properties' => array( 1292 'a' => array( 1293 'type' => 'string', 1294 'context' => array( 'view', 'edit' ), 1295 ), 1296 ), 1297 'patternProperties' => array( 1298 '[0-9]' => array( 1299 'type' => 'string', 1300 'context' => array( 'view', 'edit' ), 1301 ), 1302 'c.*' => array( 1303 'type' => 'string', 1304 'context' => array( 'edit' ), 1305 ), 1306 ), 1307 'additionalProperties' => array( 1308 'type' => 'string', 1309 'context' => array( 'edit' ), 1310 ), 1311 ), 1312 array( 1313 'a' => '1', 1314 'b' => '2', 1315 '0' => '3', 1316 'ca' => '4', 1317 ), 1318 array( 1319 'a' => '1', 1320 '0' => '3', 1321 ), 1322 ), 1287 1323 'multiple types object' => array( 1288 1324 array(
Note: See TracChangeset
for help on using the changeset viewer.