diff options
-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() |