From 8eeb0d73bc96bcbefe7580ee7e745f046a301774 2014-12-17 19:38:45 From: Scott Sanderson Date: 2014-12-17 19:38:45 Subject: [PATCH] TEST: Expect a 404 on delete of non-existent file. --- diff --git a/IPython/html/services/contents/tests/test_manager.py b/IPython/html/services/contents/tests/test_manager.py index 45f6f4f..f0ac596 100644 --- a/IPython/html/services/contents/tests/test_manager.py +++ b/IPython/html/services/contents/tests/test_manager.py @@ -308,6 +308,9 @@ class TestContentsManager(TestCase): # Delete the notebook cm.delete(path) + # Check that deleting a non-existent path raises an error. + self.assertRaises(HTTPError, cm.delete, path) + # Check that a 'get' on the deleted notebook raises and error self.assertRaises(HTTPError, cm.get, path) @@ -317,8 +320,8 @@ class TestContentsManager(TestCase): name = u'nb √.ipynb' path = u'{0}/{1}'.format(parent, name) self.make_dir(parent) - orig = cm.new(path=path) + orig = cm.new(path=path) # copy with unspecified name copy = cm.copy(path) self.assertEqual(copy['name'], orig['name'].replace('.ipynb', '-Copy1.ipynb'))