Changeset 28965
- Timestamp:
- 07/03/2014 01:16:33 AM (11 years ago)
- Location:
- trunk/tests/phpunit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/install.php
r26944 r28965 10 10 $multisite = ! empty( $argv[2] ); 11 11 12 define( 'WP_INSTALLING', true );13 12 require_once $config_file_path; 14 13 require_once dirname( __FILE__ ) . '/functions.php'; -
trunk/tests/phpunit/tests/option/transient.php
r28962 r28965 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(); … … 60 64 */ 61 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 62 70 $key = rand_str(); 63 71 $value = rand_str();
Note: See TracChangeset
for help on using the changeset viewer.