Show More
@@ -1,3 +1,4 b'' | |||||
|
1 | # coding: utf-8 | |||
1 | """ |
|
2 | """ | |
2 | Tests for IPython.config.application.Application |
|
3 | Tests for IPython.config.application.Application | |
3 |
|
4 | |||
@@ -185,4 +186,8 b' class TestApplication(TestCase):' | |||||
185 | self.assertEqual(app.bar.b, 5) |
|
186 | self.assertEqual(app.bar.b, 5) | |
186 | self.assertEqual(app.extra_args, ['extra', '--disable', 'args']) |
|
187 | self.assertEqual(app.extra_args, ['extra', '--disable', 'args']) | |
187 |
|
188 | |||
|
189 | def test_unicode_argv(self): | |||
|
190 | app = MyApp() | |||
|
191 | app.parse_command_line(['ünîcødé']) | |||
|
192 | ||||
188 |
|
193 |
General Comments 0
You need to be logged in to leave comments.
Login now