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