@@ -34,7 +34,7 @@ def test_module(self):
3434 self .assertEqual (output , 'Hello world!\n ' )
3535 self .assertTrue (hasattr (module , '__spec__' ))
3636
37- @unittest .skip ("TODO: RUSTPYTHON" )
37+ @unittest .skip ("TODO: RUSTPYTHON, ImportError: '__phello__' is not a frozen module " )
3838 def test_package (self ):
3939 name = '__phello__'
4040 module , output = self .exec_module (name )
@@ -47,7 +47,7 @@ def test_package(self):
4747 expected = value ))
4848 self .assertEqual (output , 'Hello world!\n ' )
4949
50- @unittest .skip ("TODO: RUSTPYTHON" )
50+ @unittest .skip ("TODO: RUSTPYTHON, ImportError: '__phello__.spam' is not a frozen module " )
5151 def test_lacking_parent (self ):
5252 name = '__phello__.spam'
5353 with util .uncache ('__phello__' ):
@@ -107,7 +107,7 @@ def test_module(self):
107107 self .assertEqual (stdout .getvalue (), 'Hello world!\n ' )
108108 self .assertFalse (hasattr (module , '__file__' ))
109109
110- @unittest .skip ("TODO: RUSTPYTHON" )
110+ @unittest .skip ("TODO: RUSTPYTHON, ImportError: '__phello__' is not a frozen module " )
111111 def test_package (self ):
112112 with util .uncache ('__phello__' ), captured_stdout () as stdout :
113113 with warnings .catch_warnings ():
@@ -126,7 +126,7 @@ def test_package(self):
126126 self .assertEqual (stdout .getvalue (), 'Hello world!\n ' )
127127 self .assertFalse (hasattr (module , '__file__' ))
128128
129- @unittest .skip ("TODO: RUSTPYTHON" )
129+ @unittest .skip ("TODO: RUSTPYTHON, ImportError: '__phello__.spam' is not a frozen module " )
130130 def test_lacking_parent (self ):
131131 with util .uncache ('__phello__' , '__phello__.spam' ), \
132132 captured_stdout () as stdout :
@@ -204,7 +204,7 @@ def test_get_source(self):
204204 result = self .machinery .FrozenImporter .get_source ('__hello__' )
205205 self .assertIsNone (result )
206206
207- @unittest .skip ("TODO: RUSTPYTHON" )
207+ @unittest .skip ("TODO: RUSTPYTHON, ImportError: '__phello__' is not a frozen module " )
208208 def test_is_package (self ):
209209 # Should be able to tell what is a package.
210210 test_for = (('__hello__' , False ), ('__phello__' , True ),
0 commit comments