Changeset 30289
- Timestamp:
- 11/08/2014 09:55:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/uploadFile.php
r25002 r30289 55 55 $this->assertNotInstanceOf( 'IXR_Error', $result ); 56 56 } 57 58 /**59 * @ticket 1194660 */61 function test_valid_mime() {62 $this->make_user_by_role( 'editor' );63 64 // create attachment65 $filename = ( DIR_TESTDATA . '/images/test-image-mime-jpg.png' );66 $contents = file_get_contents( $filename );67 $data = array(68 'name' => 'test-image-mime-jpg.png',69 'type' => 'image/png',70 'bits' => $contents71 );72 73 $result = $this->myxmlrpcserver->mw_newMediaObject( array( 0, 'editor', 'editor', $data ) );74 75 $this->assertNotInstanceOf( 'IXR_Error', $result );76 77 $this->assertEquals( 'image/jpeg', $result['type'] );78 }79 57 }
Note: See TracChangeset
for help on using the changeset viewer.