diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-19 03:22:48 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-01-19 03:22:48 (GMT) |
commit | b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29 (patch) | |
tree | 7873ec04a34a92af3aa74a2af1c83f60ac87e26f /Lib | |
parent | e36f77814e83bd2b3dc84a4e0bfb0b8dc0da9965 (diff) | |
download | cpython-b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29.zip cpython-b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29.tar.gz cpython-b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29.tar.bz2 |
add test of bastion and rexec to std regression test suite
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/output/test_bastion | 10 | ||||
-rw-r--r-- | Lib/test/test_bastion.py | 3 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Lib/test/output/test_bastion b/Lib/test/output/test_bastion new file mode 100644 index 0000000..a983936 --- /dev/null +++ b/Lib/test/output/test_bastion @@ -0,0 +1,10 @@ +test_bastion +b.total() = 99 +b.sum = inaccessible +b._add = inaccessible +b._get_.func_defaults = [<type 'function'>] accessible +==================== Using rexec: ==================== +b.total() = 198 +b.sum = inaccessible +b._add = inaccessible +b._get_.func_defaults = inaccessible diff --git a/Lib/test/test_bastion.py b/Lib/test/test_bastion.py new file mode 100644 index 0000000..0a1ded7 --- /dev/null +++ b/Lib/test/test_bastion.py @@ -0,0 +1,3 @@ +import Bastion + +Bastion._test() |