Changeset 34828 for trunk/tests/phpunit/tests/option/transient.php
- Timestamp:
- 10/05/2015 03:05:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/transient.php
r34767 r34828 47 47 */ 48 48 function test_transient_data_with_timeout() { 49 if ( is_multisite() ) {50 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' );51 }52 53 49 $key = rand_str(); 54 50 $value = rand_str(); … … 72 68 */ 73 69 function test_transient_add_timeout() { 74 if ( is_multisite() ) {75 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' );76 }77 78 70 $key = rand_str(); 79 71 $value = rand_str(); … … 127 119 */ 128 120 function test_nonexistent_key_old_timeout() { 129 if ( is_multisite() ) {130 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' );131 }132 133 121 // Create a transient 134 122 $key = 'test_transient';
Note: See TracChangeset
for help on using the changeset viewer.