[pypy-svn] rev 670 - pypy/trunk/src/pypy/objspace/std/test

mwh at codespeak.net mwh at codespeak.net
Thu May 29 15:12:05 CEST 2003


Author: mwh
Date: Thu May 29 15:12:05 2003
New Revision: 670

Added:
   pypy/trunk/src/pypy/objspace/std/test/test_stringobject.py
Log:
add (empty) test_stringobject.py


Added: pypy/trunk/src/pypy/objspace/std/test/test_stringobject.py
==============================================================================
--- (empty file)
+++ pypy/trunk/src/pypy/objspace/std/test/test_stringobject.py	Thu May 29 15:12:05 2003
@@ -0,0 +1,16 @@
+import testsupport
+from pypy.objspace.std.stringobject import W_StringObject
+from pypy.objspace.std.objspace import StdObjSpace
+
+
+class TestW_StringObject(testsupport.TestCase):
+
+    def setUp(self):
+        self.space = StdObjSpace()
+
+    def tearDown(self):
+        pass
+        
+
+if __name__ == '__main__':
+    testsupport.main()


More information about the Pypy-commit mailing list