wordpress-develop/tests/phpunit/tests/query/verboseRewriteRules.php
Drew Jaynes 0ea2acb720 Tests: Permalink Structures Phase II: DRY up logic for setting permalink structures in test methods.
Renames `reset_permalinks()` to `set_permalink_structure()` (mimicking `$wp_rewrite->set_permalink_structure()`) and allows it to accept an optional permalink structure. In this way, we can double dip using it to both set and reset the permalink structure from anywhere.

Removes alot of duplicated code from tests.

See #33968.


git-svn-id: https://develop.svn.wordpress.org/trunk@34810 602fd350-edb4-49c9-b593-d223f7449a82
2015-10-03 20:54:11 +00:00

18 lines
323 B
PHP

<?php
require_once dirname( __FILE__ ) . '/conditionals.php';
/**
* @group query
* @group rewrite
*/
class Tests_Query_VerbosePageRules extends Tests_Query_Conditionals {
function setUp() {
parent::setUp();
create_initial_taxonomies();
$this->set_permalink_structure( '/%category%/%year%/%postname%/' );
}
}