@@ -193,51 +193,6 @@ Feature: Install WordPress core
193193 When I run `wp user check-password wpcli 'R^^CzY;G"iZ@]H9b,' --escape-chars`
194194 Then the return code should be 0
195195
196- @less-than-php-7
197- Scenario: Install WordPress with locale set to de_DE on WP < 4.0
198- Given an empty directory
199- And an empty cache
200- And a database
201-
202- When I run `wp core download --version=3.7 --locale=de_DE`
203- And save STDOUT 'Downloading WordPress ([\d\.]+)' as {VERSION}
204- And I run `echo {VERSION}`
205- Then STDOUT should contain:
206- """
207- 3.7
208- """
209- And the wp-settings.php file should exist
210- And the {SUITE_CACHE_DIR}/core/wordpress-{VERSION}-de_DE.tar.gz file should exist
211-
212- When I run `wp config create --dbname={DB_NAME} --dbuser={DB_USER} --dbpass={DB_PASSWORD} --dbhost={DB_HOST} --locale=de_DE --skip-check`
213- Then STDOUT should be:
214- """
215- Success: Generated 'wp-config.php' file.
216- """
217-
218- # Old versions of WP can generate wpdb database errors if the WP tables don't exist, so STDERR may or may not be empty
219- When I try `wp core install --url=example.org --title=Test --admin_user=testadmin --admin_email=testadmin@example.com --admin_password=newpassword --locale=de_DE --skip-email`
220- Then STDERR should contain:
221- """
222- Warning: The flag --locale=de_DE is being ignored as it requires WordPress 4.0+.
223- """
224- And STDOUT should contain:
225- """
226- Success: WordPress installed successfully.
227- """
228-
229- When I run `wp core version`
230- Then STDOUT should contain:
231- """
232- 3.7
233- """
234-
235- When I run `wp taxonomy list`
236- Then STDOUT should contain:
237- """
238- Kategorien
239- """
240-
241196 # This test downgrades to an older WordPress version, but the SQLite plugin requires 6.0+
242197 @require-mysql
243198 Scenario: Install WordPress with locale set to de_DE on WP > = 4.0
0 commit comments