mirror of
https://github.com/servo/servo
synced 2026-05-14 02:47:14 +02:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
14 lines
270 B
Python
14 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__
|