Changeset 33702
- Timestamp:
- 08/21/2015 08:32:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/transient.php
r33125 r33702 43 43 } 44 44 45 if ( wp_using_ext_object_cache() ) { 46 $this->markTestSkipped( 'Not testable with an external object cache.' ); 47 } 48 45 49 $key = rand_str(); 46 50 $value = rand_str(); … … 68 72 } 69 73 74 if ( wp_using_ext_object_cache() ) { 75 $this->markTestSkipped( 'Not testable with an external object cache.' ); 76 } 77 70 78 $key = rand_str(); 71 79 $value = rand_str(); … … 91 99 */ 92 100 function test_nonexistent_key_dont_delete_if_false() { 101 if ( wp_using_ext_object_cache() ) { 102 $this->markTestSkipped( 'Not testable with an external object cache.' ); 103 } 104 93 105 // Create a bogus a transient 94 106 $key = 'test_transient'; … … 121 133 if ( is_multisite() ) { 122 134 $this->markTestSkipped( 'Not testable in MS: wpmu_create_blog() defines WP_INSTALLING.' ); 135 } 136 137 if ( wp_using_ext_object_cache() ) { 138 $this->markTestSkipped( 'Not testable with an external object cache.' ); 123 139 } 124 140
Note: See TracChangeset
for help on using the changeset viewer.