mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Query: Add a WP::remove_query_var() helper function.
This makes cleaning up public query vars easier. Fixes #35234. git-svn-id: https://develop.svn.wordpress.org/trunk@36177 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
37
tests/phpunit/tests/wp.php
Normal file
37
tests/phpunit/tests/wp.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @group wp
|
||||
*/
|
||||
class Tests_WP extends WP_UnitTestCase {
|
||||
/**
|
||||
* @var WP
|
||||
*/
|
||||
protected $wp;
|
||||
|
||||
public function setUp() {
|
||||
$this->wp = new WP();
|
||||
}
|
||||
|
||||
public function test_add_query_var() {
|
||||
$public_qv_count = count( $this->wp->public_query_vars );
|
||||
|
||||
$this->wp->add_query_var( 'test' );
|
||||
$this->wp->add_query_var( 'test2' );
|
||||
$this->wp->add_query_var( 'test' );
|
||||
|
||||
$this->assertSame( $public_qv_count + 2, count( $this->wp->public_query_vars ) );
|
||||
$this->assertTrue( in_array( 'test', $this->wp->public_query_vars ) );
|
||||
$this->assertTrue( in_array( 'test2', $this->wp->public_query_vars ) );
|
||||
}
|
||||
|
||||
public function test_remove_query_var() {
|
||||
$public_qv_count = count( $this->wp->public_query_vars );
|
||||
|
||||
$this->wp->add_query_var( 'test' );
|
||||
$this->assertTrue( in_array( 'test', $this->wp->public_query_vars ) );
|
||||
$this->wp->remove_query_var( 'test' );
|
||||
|
||||
$this->assertSame( $public_qv_count, count( $this->wp->public_query_vars ) );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user