Use a fake process for test_cmd_args.

This should fix the teardown exception (because the message module is not
patched anymore) with the new pytest-qt version.
This commit is contained in:
Florian Bruhin 2015-08-01 23:50:29 +02:00
parent 0734d9f0de
commit 0e25f5c730

View File

@ -109,12 +109,12 @@ def test_double_start_finished(qtbot, proc):
proc.start(*argv)
def test_cmd_args(proc):
def test_cmd_args(fake_proc):
"""Test the cmd and args attributes."""
cmd = 'does_not_exist'
args = ['arg1', 'arg2']
proc.start(cmd, args)
assert (proc.cmd, proc.args) == (cmd, args)
fake_proc.start(cmd, args)
assert (fake_proc.cmd, fake_proc.args) == (cmd, args)
def test_error(qtbot, proc):