Adjust unit tests to account for change in [37144]

git-svn-id: https://develop.svn.wordpress.org/trunk@37150 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Aaron Jorbin 2016-03-30 19:52:14 +00:00
parent 565ac1efc6
commit 253308253b
1 changed files with 28 additions and 2 deletions

View File

@ -143,7 +143,20 @@ class Tests_Ajax_CompressionTest extends WP_Ajax_UnitTestCase {
unset( $e );
}
// Check the site option
// Check the site option is not changed due to lack of nonce
$this->assertEquals( 0, get_site_option( 'can_compress_scripts' ) );
// Add a nonce
$_GET['_ajax_nonce'] = wp_create_nonce( 'update_can_compress_scripts' );
// Retry the request
try {
$this->_handleAjax( 'wp-compression-test' );
} catch ( WPAjaxDieStopException $e ) {
unset( $e );
}
// Check the site option is changed
$this->assertEquals( 1, get_site_option( 'can_compress_scripts' ) );
}
@ -168,7 +181,20 @@ class Tests_Ajax_CompressionTest extends WP_Ajax_UnitTestCase {
unset( $e );
}
// Check the site option
// Check the site option is not changed due to lack of nonce
$this->assertEquals( 1, get_site_option( 'can_compress_scripts' ) );
// Add a nonce
$_GET['_ajax_nonce'] = wp_create_nonce( 'update_can_compress_scripts' );
// Retry the request
try {
$this->_handleAjax( 'wp-compression-test' );
} catch ( WPAjaxDieStopException $e ) {
unset( $e );
}
// Check the site option is changed
$this->assertEquals( 0, get_site_option( 'can_compress_scripts' ) );
}