From b4ed8c4db0701dcce6c83fcdb82da1bdc651bf29 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Fri, 19 Jan 2001 03:22:48 +0000 Subject: [PATCH] add test of bastion and rexec to std regression test suite --- Lib/test/output/test_bastion | 10 ++++++++++ Lib/test/test_bastion.py | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 Lib/test/output/test_bastion create mode 100644 Lib/test/test_bastion.py diff --git a/Lib/test/output/test_bastion b/Lib/test/output/test_bastion new file mode 100644 index 00000000000..a98393638be --- /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 00000000000..0a1ded7e754 --- /dev/null +++ b/Lib/test/test_bastion.py @@ -0,0 +1,3 @@ +import Bastion + +Bastion._test()