summaryrefslogtreecommitdiff
path: root/scipy/weave/tests/test_scxx.py
diff options
context:
space:
mode:
Diffstat (limited to 'scipy/weave/tests/test_scxx.py')
-rw-r--r--scipy/weave/tests/test_scxx.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/scipy/weave/tests/test_scxx.py b/scipy/weave/tests/test_scxx.py
new file mode 100644
index 000000000..4a2a568fc
--- /dev/null
+++ b/scipy/weave/tests/test_scxx.py
@@ -0,0 +1,16 @@
+""" Test refcounting and behavior of SCXX.
+"""
+import unittest
+import time
+import os,sys
+
+from scipy_test.testing import *
+set_local_path()
+from test_scxx_object import *
+from test_scxx_sequence import *
+from test_scxx_dict import *
+restore_path()
+
+if __name__ == "__main__":
+ ScipyTest('weave.inline_tools').run()
+