示例#1
0
 def test_import(self):
     import extmod
     assert not hasattr(extmod, '__file__')
     assert type(extmod.time()) is float
示例#2
0
 def test_import(self):
     import extmod
     assert extmod.__file__.endswith('extmod')
     assert type(extmod.time()) is float
示例#3
0
 def test_import(self):
     import extmod
     assert extmod.__file__.endswith('extmod')
     assert type(extmod.time()) is float
示例#4
0
 def test_import(self):
     import extmod
     assert not hasattr(extmod, '__file__')
     assert type(extmod.time()) is float