diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-07 09:27:14 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-05-07 09:27:14 -0400 |
| commit | 92606b9dc48b7c6d0156eee83d221e4520fd771b (patch) | |
| tree | d8167c56e64fab9effb8e03bb3e5992c128fff87 | |
| parent | f188fb4c51e41a597fb1f8e4fd406e673a35772a (diff) | |
| download | python-coveragepy-92606b9dc48b7c6d0156eee83d221e4520fd771b.tar.gz | |
OS truce
| -rw-r--r-- | test/farm/run/run_xxx.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/farm/run/run_xxx.py b/test/farm/run/run_xxx.py index 37a2cb5..f3287a7 100644 --- a/test/farm/run/run_xxx.py +++ b/test/farm/run/run_xxx.py @@ -1,8 +1,8 @@ -copy("src", "out")
-run("""
- coverage -e -x xxx
- coverage -r
- """, rundir="out", outfile="stdout.txt")
-contains("out/stdout.txt", "xxx: 3 4 0 7")
-doesnt_contain("out/stdout.txt", "No such file or directory")
-clean("out")
+copy("src", "out") +run(""" + coverage -e -x xxx + coverage -r + """, rundir="out", outfile="stdout.txt") +contains("out/stdout.txt", "xxx: 3 4 0 7") +doesnt_contain("out/stdout.txt", "No such file or directory") +clean("out") |
