[pypy-svn] r40089 - pypy/dist/pypy/module/gc/test
cfbolz at codespeak.net
cfbolz at codespeak.net
Thu Mar 8 18:39:09 CET 2007
Author: cfbolz
Date: Thu Mar 8 18:39:08 2007
New Revision: 40089
Added:
pypy/dist/pypy/module/gc/test/
pypy/dist/pypy/module/gc/test/__init__.py
pypy/dist/pypy/module/gc/test/test_gc.py
Log:
add one (idiotic) test to the gc module
Added: pypy/dist/pypy/module/gc/test/__init__.py
==============================================================================
Added: pypy/dist/pypy/module/gc/test/test_gc.py
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/module/gc/test/test_gc.py Thu Mar 8 18:39:08 2007
@@ -0,0 +1,4 @@
+class AppTestGC(object):
+ def test_collect(self):
+ import gc
+ gc.collect() # mostly a "does not crash" kind of test
More information about the Pypy-commit
mailing list