[pypy-svn] r48375 - pypy/branch/clr-module-improvements/pypy/module/clr/test
cfbolz at codespeak.net
cfbolz at codespeak.net
Wed Nov 7 23:46:44 CET 2007
Author: cfbolz
Date: Wed Nov 7 23:46:42 2007
New Revision: 48375
Added:
pypy/branch/clr-module-improvements/pypy/module/clr/test/test_importer.py (contents, props changed)
Log:
again a bit of code to help amit
Added: pypy/branch/clr-module-improvements/pypy/module/clr/test/test_importer.py
==============================================================================
--- (empty file)
+++ pypy/branch/clr-module-improvements/pypy/module/clr/test/test_importer.py Wed Nov 7 23:46:42 2007
@@ -0,0 +1,11 @@
+from pypy.conftest import gettestobjspace
+
+class AppTestDotnet:
+ def setup_class(cls):
+ space = gettestobjspace(usemodules=('clr',))
+ cls.space = space
+
+ def test_import_hook_simple(self):
+ import clr
+ # import System.Math ...
+
More information about the Pypy-commit
mailing list