mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-30 12:11:32 +08:00
TEST: Expect a 404 on delete of non-existent file.
This commit is contained in:
parent
6bfab2de08
commit
23e5e6da4f
@ -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'))
|
||||
|
Loading…
Reference in New Issue
Block a user