Changeset 47013 for trunk/tests/phpunit/tests/multisite.php
- Timestamp:
- 12/25/2019 09:39:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite.php
r46586 r47013 44 44 'public' => self::factory()->blog->create_many( 45 45 random_int( 0, 5 ), 46 array( 'meta' => array( 'public' => 1 ) ) 46 array( 47 'public' => 1, 48 ) 47 49 ), 48 50 'archived' => self::factory()->blog->create_many( 49 51 random_int( 0, 5 ), 50 array( 'meta' => array( 'archived' => 1 ) ) 52 array( 53 'public' => 0, 54 'archived' => 1, 55 ) 51 56 ), 52 57 'mature' => self::factory()->blog->create_many( 53 58 random_int( 0, 5 ), 54 array( 'meta' => array( 'mature' => 1 ) ) 59 array( 60 'public' => 0, 61 'mature' => 1, 62 ) 55 63 ), 56 64 'spam' => self::factory()->blog->create_many( 57 65 random_int( 0, 5 ), 58 array( 'meta' => array( 'spam' => 1 ) ) 66 array( 67 'public' => 0, 68 'spam' => 1, 69 ) 59 70 ), 60 71 'deleted' => self::factory()->blog->create_many( 61 72 random_int( 0, 5 ), 62 array( 'meta' => array( 'deleted' => 1 ) ) 73 array( 74 'public' => 0, 75 'deleted' => 1, 76 ) 63 77 ), 64 78 );
Note: See TracChangeset
for help on using the changeset viewer.