Changeset 35950
- Timestamp:
- 12/15/2015 07:49:43 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/listFilter.php
r35949 r35950 111 111 } 112 112 113 /**114 * When not being passed an array, the function should throw a warning.115 *116 * @ticket 35087117 * @expectedException PHPUnit_Framework_Error_Warning118 */119 function test_wp_list_pluck_non_array() {120 $object = new stdClass();121 $object->foo = 'abc';122 $object->bar = 'def';123 wp_list_pluck( $object, 'test' );124 }125 126 113 function test_filter_object_list_nested_array_and() { 127 114 $list = wp_filter_object_list( $this->object_list, array( 'field4' => array( 'blue' ) ), 'AND' );
Note: See TracChangeset
for help on using the changeset viewer.