You appear to be a bot. Output may be restricted
Description
Usage
Tests_XMLRPC_mw_newPost::test_incapable_set_post_type_as_page();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/xmlrpc/mw/newPost.php
Lines:
1 to 12 of 12
public function test_incapable_set_post_type_as_page() { $this->make_user_by_role( 'author' ); $post = array( 'title' => 'Test', 'post_type' => 'page', ); $result = $this->myxmlrpcserver->mw_newPost( array( 1, 'author', 'author', $post ) ); $this->assertIXRError( $result ); $this->assertSame( 401, $result->code ); }