##// END OF EJS Templates
Add failing test for #822, will be fixed next
Fernando Perez -
Show More
@@ -199,6 +199,13 b' class InteractiveShellTestCase(unittest.TestCase):'
199 assert ip.user_ns['b'] == 12
199 assert ip.user_ns['b'] == 12
200 ip.reset()
200 ip.reset()
201
201
202 def test_var_expand(self):
203 ip = get_ipython()
204 ip.user_ns['f'] = u'Ca\xc3\xb1o'
205 # This should not raise any exception:
206 ip.var_expand(u'echo $f')
207
208
202 class TestSafeExecfileNonAsciiPath(unittest.TestCase):
209 class TestSafeExecfileNonAsciiPath(unittest.TestCase):
203
210
204 def setUp(self):
211 def setUp(self):
General Comments 0
You need to be logged in to leave comments. Login now