diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/tools/py/testing/root/test_std.py')
-rw-r--r-- | tests/wpt/web-platform-tests/tools/py/testing/root/test_std.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/wpt/web-platform-tests/tools/py/testing/root/test_std.py b/tests/wpt/web-platform-tests/tools/py/testing/root/test_std.py deleted file mode 100644 index 143556a0557..00000000000 --- a/tests/wpt/web-platform-tests/tools/py/testing/root/test_std.py +++ /dev/null @@ -1,13 +0,0 @@ - -import py - -def test_os(): - import os - assert py.std.os is os - -def test_import_error_converts_to_attributeerror(): - py.test.raises(AttributeError, "py.std.xyzalskdj") - -def test_std_gets_it(): - for x in py.std.sys.modules: - assert x in py.std.__dict__ |