summaryrefslogtreecommitdiff
path: root/test/farm/html/src/main.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-27 23:02:29 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-27 23:02:29 -0500
commit9d89805e5a4a9969387f58f7b299231ae7ec8486 (patch)
tree71174dd5ba518ca36e4663f0a7c24ac123ac023d /test/farm/html/src/main.py
parentcd1929b269118e6f335aea74165e9366b3c3ac42 (diff)
downloadpython-coveragepy-git-9d89805e5a4a9969387f58f7b299231ae7ec8486.tar.gz
Add more tests of omitting files during HTML reporting, and a better way to enable re-importing modules during test_farm tests.
Diffstat (limited to 'test/farm/html/src/main.py')
-rw-r--r--test/farm/html/src/main.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/farm/html/src/main.py b/test/farm/html/src/main.py
new file mode 100644
index 00000000..b42b3647
--- /dev/null
+++ b/test/farm/html/src/main.py
@@ -0,0 +1,10 @@
+import m1
+import m2
+import m3
+
+a = 5
+b = 6
+
+assert m1.m1a == 1
+assert m2.m2a == 1
+assert m3.m3a == 1