##// END OF EJS Templates
Another passing test :-)
Thomas Kluyver -
Show More
@@ -244,7 +244,6 b' class TestMagicRunSimple(tt.TempFileMixin):'
244 err = None
244 err = None
245 tt.ipexec_validate(self.fname, 'object A deleted', err)
245 tt.ipexec_validate(self.fname, 'object A deleted', err)
246
246
247 @dec.skip_known_failure
248 def test_aggressive_namespace_cleanup(self):
247 def test_aggressive_namespace_cleanup(self):
249 """Test that namespace cleanup is not too aggressive GH-238
248 """Test that namespace cleanup is not too aggressive GH-238
250
249
@@ -262,7 +261,7 b' class TestMagicRunSimple(tt.TempFileMixin):'
262 self.mktmp(py3compat.doctest_refactor_print(src))
261 self.mktmp(py3compat.doctest_refactor_print(src))
263 _ip.magic('run %s' % self.fname)
262 _ip.magic('run %s' % self.fname)
264 _ip.run_cell('ip == get_ipython()')
263 _ip.run_cell('ip == get_ipython()')
265 nt.assert_equal(_ip.user_ns['i'], 5)
264 nt.assert_equal(_ip.user_ns['i'], 4)
266
265
267 def test_run_second(self):
266 def test_run_second(self):
268 """Test that running a second file doesn't clobber the first, gh-3547
267 """Test that running a second file doesn't clobber the first, gh-3547
General Comments 0
You need to be logged in to leave comments. Login now