From: Jeremy Hylton Date: Fri, 19 Jan 2001 03:22:48 +0000 (+0000) Subject: add test of bastion and rexec to std regression test suite X-Git-Tag: v2.1a1~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29;p=python add test of bastion and rexec to std regression test suite --- diff --git a/Lib/test/output/test_bastion b/Lib/test/output/test_bastion new file mode 100644 index 0000000000..a98393638b --- /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 = [] 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 0000000000..0a1ded7e75 --- /dev/null +++ b/Lib/test/test_bastion.py @@ -0,0 +1,3 @@ +import Bastion + +Bastion._test()