diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-21 23:09:05 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-21 23:09:05 -0400 |
commit | 38d7d50b4815a4539829dee63fd79a617bf58f24 (patch) | |
tree | 14a7a4384e505fbb462f1fa3590bceaabb112fe6 /test/modules/pkg1/p1a.py | |
parent | 6fcedaecffc79a07bc62c11c5b0af7bd7c16ca2a (diff) | |
download | python-coveragepy-git-38d7d50b4815a4539829dee63fd79a617bf58f24.tar.gz |
Re-vamp the tests for omit and include, and add source.
Diffstat (limited to 'test/modules/pkg1/p1a.py')
-rw-r--r-- | test/modules/pkg1/p1a.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/modules/pkg1/p1a.py b/test/modules/pkg1/p1a.py new file mode 100644 index 00000000..be5fcdd3 --- /dev/null +++ b/test/modules/pkg1/p1a.py @@ -0,0 +1,5 @@ +import os, sys + +# Invoke functions in os and sys so we can see if we measure code there. +x = sys.getcheckinterval() +y = os.getcwd() |