We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1365235 commit 97d52faCopy full SHA for 97d52fa
features/post-meta.feature
@@ -223,7 +223,7 @@ Scenario: List post meta with or without single flag
223
Given a WP install
224
225
When I run `wp post meta add 1 apple banana`
226
- And I run the previous command again
+ And I run `wp post meta add 1 apple mango`
227
Then STDOUT should not be empty
228
229
When I run `wp post meta get 1 apple`
@@ -243,13 +243,13 @@ Scenario: List post meta with or without single flag
243
"""
244
array (
245
0 => 'banana',
246
- 1 => 'banana',
+ 1 => 'mango',
247
)
248
249
When I run `wp post meta get 1 apple --no-single --format=json`
250
Then STDOUT should be:
251
252
- ["banana","banana"]
+ ["banana","mango"]
253
254
255
@pluck
0 commit comments