You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/interactive.feature
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -207,3 +207,19 @@ Feature: It is possible to interactively fill in a form from the CLI
207
207
[price] => 10.95
208
208
)
209
209
"""
210
+
211
+
Scenario: Secret required field
212
+
When I run the command "form:secret_required_field" and I provide as input
213
+
"""
214
+
Jelmer[enter]
215
+
"""
216
+
Then the command was not successful
217
+
And the output should contain
218
+
"""
219
+
Invalid data provided: ERROR: This value should not be blank.
220
+
"""
221
+
And the output should contain
222
+
"""
223
+
[RuntimeException]
224
+
Errors out of the form's scope - do you have validation constraints on properties not used in the form? (Violations on unused fields: data.fieldNotUsedInTheForm)
0 commit comments