From ce9806b95294173ec6fc4bf1e3e54038da0ad494 2012-06-30 07:37:24 From: MinRK Date: 2012-06-30 07:37:24 Subject: [PATCH] skip test_cwdx on Windows cwd_x is explicitly disabled on Windows in prompts, so it makes no sense to test it. --- diff --git a/IPython/core/tests/test_prompts.py b/IPython/core/tests/test_prompts.py index 8673bfe..8d04b2b 100644 --- a/IPython/core/tests/test_prompts.py +++ b/IPython/core/tests/test_prompts.py @@ -98,6 +98,7 @@ class PromptTests(unittest.TestCase): self.assertEquals(format(lz), str(f)) self.assertEquals(format(lz, '.1'), '0.5') + @dec.skip_win32 def test_cwd_x(self): self.pm.in_template = r"\X0" save = os.getcwdu()