| 99 |
| 100 |
| 101 |
| 102 |
| 103 |
| 104 |
| 105 |
| 106 |
| 107 | |
def test_cont_executor(self): |
-> item = self.getexample("printfail") |
ex = AsyncExecutor(item, config=self.config) |
cont, pid = ex.execute() |
assert pid |
outcome_repr = cont() |
outcome = ReprOutcome(outcome_repr) |
assert not outcome.passed |
assert outcome.stdout.find("samfing elz") != -1 | |