forked from mirrors/gecko-dev
Updated to 3.2.5. MozReview-Commit-ID: 34OG1iGeMVW --HG-- extra : rebase_source : 3ffa191b142f60897abb0728f53e71b8cda52701
13 lines
270 B
Python
13 lines
270 B
Python
|
|
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__
|