Changeset 49027 for trunk/tests/phpunit/tests/multisite/siteMeta.php
- Timestamp:
- 09/21/2020 02:05:23 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/siteMeta.php
r48939 r49027 59 59 public function test_add() { 60 60 if ( ! is_site_meta_supported() ) { 61 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );61 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 62 62 } 63 63 … … 68 68 public function test_add_unique() { 69 69 if ( ! is_site_meta_supported() ) { 70 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );70 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 71 71 } 72 72 … … 77 77 public function test_delete() { 78 78 if ( ! is_site_meta_supported() ) { 79 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );79 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 80 80 } 81 81 … … 88 88 public function test_delete_with_invalid_meta_key_should_return_false() { 89 89 if ( ! is_site_meta_supported() ) { 90 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );90 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 91 91 } 92 92 … … 96 96 public function test_delete_should_respect_meta_value() { 97 97 if ( ! is_site_meta_supported() ) { 98 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );98 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 99 99 } 100 100 … … 110 110 public function test_get_with_no_key_should_fetch_all_keys() { 111 111 if ( ! is_site_meta_supported() ) { 112 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );112 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 113 113 } 114 114 … … 127 127 public function test_get_with_key_should_fetch_all_for_key() { 128 128 if ( ! is_site_meta_supported() ) { 129 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );129 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 130 130 } 131 131 … … 142 142 public function test_get_should_respect_single_true() { 143 143 if ( ! is_site_meta_supported() ) { 144 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );144 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 145 145 } 146 146 … … 154 154 public function test_update_should_pass_to_add_when_no_value_exists_for_key() { 155 155 if ( ! is_site_meta_supported() ) { 156 $this->markTestSkipped( 'Test s only runs with the blogmeta database table installed' );156 $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); 157 157 } 158 158 … … 167 167 public function test_update_should_return_true_when_updating_existing_value_for_key() { 168 168 if ( ! is_site_meta_supported() ) { 169 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );169 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 170 170 } 171 171 … … 181 181 public function test_delete_by_key() { 182 182 if ( ! is_site_meta_supported() ) { 183 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );183 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 184 184 } 185 185 … … 198 198 public function test_site_meta_should_be_deleted_when_site_is_deleted() { 199 199 if ( ! is_site_meta_supported() ) { 200 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );200 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 201 201 } 202 202 … … 224 224 225 225 if ( ! is_site_meta_supported() ) { 226 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );226 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 227 227 } 228 228 … … 239 239 240 240 if ( ! is_site_meta_supported() ) { 241 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );241 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 242 242 } 243 243 … … 260 260 261 261 if ( ! is_site_meta_supported() ) { 262 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );262 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 263 263 } 264 264 … … 282 282 public function test_add_site_meta_should_bust_get_sites_cache() { 283 283 if ( ! is_site_meta_supported() ) { 284 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );284 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 285 285 } 286 286 … … 324 324 public function test_update_site_meta_should_bust_get_sites_cache() { 325 325 if ( ! is_site_meta_supported() ) { 326 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );326 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 327 327 } 328 328 … … 367 367 public function test_delete_site_meta_should_bust_get_sites_cache() { 368 368 if ( ! is_site_meta_supported() ) { 369 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed ' );369 $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); 370 370 } 371 371
Note: See TracChangeset
for help on using the changeset viewer.