Standardize and clean up star and write features

This commit is contained in:
Micah Jerome Ellison 2020-09-24 19:27:07 -07:00
parent 379a63c8f1
commit 66b9f5a461
3 changed files with 81 additions and 79 deletions

View file

@ -433,6 +433,7 @@ def check_output_not_inline(context, text):
@then('we should see the message "{text}"')
@then('the error output should be "{text}"')
def check_message(context, text):
out = context.stderr_capture.getvalue()
assert text in out, [text, out]