add test of bastion and rexec to std regression test suite

This commit is contained in:
Jeremy Hylton 2001-01-19 03:22:48 +00:00
parent e36f77814e
commit b4ed8c4db0
2 changed files with 13 additions and 0 deletions

View File

@ -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

3
Lib/test/test_bastion.py Normal file
View File

@ -0,0 +1,3 @@
import Bastion
Bastion._test()