Changeset 47329 for branches/3.9/tests/phpunit/tests/option/transient.php
- Timestamp:
- 02/20/2020 05:04:42 PM (5 years ago)
- Location:
- branches/3.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.9
-
branches/3.9/tests/phpunit/tests/option/transient.php
r27719 r47329 39 39 */ 40 40 function test_transient_data_with_timeout() { 41 if ( is_multisite() ) { 42 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' ); 43 } 44 41 45 $key = rand_str(); 42 46 $value = rand_str(); 43 $value2 = rand_str();44 47 45 48 $this->assertFalse( get_option( '_transient_timeout_' . $key ) ); … … 61 64 */ 62 65 function test_transient_add_timeout() { 66 if ( is_multisite() ) { 67 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' ); 68 } 69 63 70 $key = rand_str(); 64 71 $value = rand_str();
Note: See TracChangeset
for help on using the changeset viewer.