Show More
@@ -19,6 +19,9 import sys | |||
|
19 | 19 | from IPython.frontend._process import PipedProcess |
|
20 | 20 | from IPython.testing import decorators as testdec |
|
21 | 21 | |
|
22 | ||
|
23 | # FIXME | |
|
24 | @testdec.skip("This doesn't work under Windows") | |
|
22 | 25 | def test_capture_out(): |
|
23 | 26 | """ A simple test to see if we can execute a process and get the output. |
|
24 | 27 | """ |
@@ -29,6 +32,7 def test_capture_out(): | |||
|
29 | 32 | result = s.getvalue().rstrip() |
|
30 | 33 | assert result == '1' |
|
31 | 34 | |
|
35 | ||
|
32 | 36 | # FIXME |
|
33 | 37 | @testdec.skip("This doesn't work under Windows") |
|
34 | 38 | def test_io(): |
@@ -47,6 +51,8 def test_io(): | |||
|
47 | 51 | assert result == test_string |
|
48 | 52 | |
|
49 | 53 | |
|
54 | # FIXME | |
|
55 | @testdec.skip("This doesn't work under Windows") | |
|
50 | 56 | def test_kill(): |
|
51 | 57 | """ Check that we can kill a process, and its subprocess. |
|
52 | 58 | """ |
@@ -245,7 +245,7 class IEngineSerializedTestCase(object): | |||
|
245 | 245 | self.assert_(es.IEngineSerialized.providedBy(self.engine)) |
|
246 | 246 | |
|
247 | 247 | def testIEngineSerializedInterfaceMethods(self): |
|
248 |
"""Does self.engine have the methods and attributes in IEngi |
|
|
248 | """Does self.engine have the methods and attributes in IEngineCore.""" | |
|
249 | 249 | for m in list(es.IEngineSerialized): |
|
250 | 250 | self.assert_(hasattr(self.engine, m)) |
|
251 | 251 | |
@@ -288,7 +288,7 class IEngineQueuedTestCase(object): | |||
|
288 | 288 | self.assert_(es.IEngineQueued.providedBy(self.engine)) |
|
289 | 289 | |
|
290 | 290 | def testIEngineQueuedInterfaceMethods(self): |
|
291 |
"""Does self.engine have the methods and attributes in IEngi |
|
|
291 | """Does self.engine have the methods and attributes in IEngineQueued.""" | |
|
292 | 292 | for m in list(es.IEngineQueued): |
|
293 | 293 | self.assert_(hasattr(self.engine, m)) |
|
294 | 294 | |
@@ -326,7 +326,7 class IEnginePropertiesTestCase(object): | |||
|
326 | 326 | self.assert_(es.IEngineProperties.providedBy(self.engine)) |
|
327 | 327 | |
|
328 | 328 | def testIEnginePropertiesInterfaceMethods(self): |
|
329 |
"""Does self.engine have the methods and attributes in IEngi |
|
|
329 | """Does self.engine have the methods and attributes in IEngineProperties.""" | |
|
330 | 330 | for m in list(es.IEngineProperties): |
|
331 | 331 | self.assert_(hasattr(self.engine, m)) |
|
332 | 332 |
General Comments 0
You need to be logged in to leave comments.
Login now