mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
test that rename fails with 409 if it would clobber
(test already passes, but it should still be tested) closes #4600
This commit is contained in:
parent
85dc6867f9
commit
b82b4997e7
@ -245,6 +245,10 @@ class APITest(NotebookTestBase):
|
||||
self.assertIn('z.ipynb', nbnames)
|
||||
self.assertNotIn('a.ipynb', nbnames)
|
||||
|
||||
def test_rename_existing(self):
|
||||
with assert_http_error(409):
|
||||
self.nb_api.rename('a.ipynb', 'foo', 'b.ipynb')
|
||||
|
||||
def test_save(self):
|
||||
resp = self.nb_api.read('a.ipynb', 'foo')
|
||||
nbcontent = json.loads(resp.text)['content']
|
||||
|
Loading…
Reference in New Issue
Block a user