##// END OF EJS Templates
Merge pull request #6828 from takluyver/terminal-list...
Merge pull request #6828 from takluyver/terminal-list Add terminals tab to the dashboard

File last commit:

r18246:478b59d5
r18615:96791286 merge
Show More
test_current.py
41 lines | 1.1 KiB | text/x-python | PythonLexer
Jonathan Frederic
Added nbformat ver conv tests, fixed some bugs
r12781 """
Contains tests class for current.py
"""
MinRK
add `nbformat.writes(version=X)` for downgrade...
r18246 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import io
import json
import tempfile
Jonathan Frederic
Added nbformat ver conv tests, fixed some bugs
r12781
from .base import TestsBase
from ..reader import get_version
MinRK
add `nbformat.writes(version=X)` for downgrade...
r18246 from ..current import read, current_nbformat, validate, writes
Jonathan Frederic
Added nbformat ver conv tests, fixed some bugs
r12781
class TestCurrent(TestsBase):
def test_read(self):
"""Can older notebooks be opened and automatically converted to the current
nbformat?"""
# Open a version 2 notebook.
with self.fopen(u'test2.ipynb', u'r') as f:
MinRK
add `nbformat.writes(version=X)` for downgrade...
r18246 nb = read(f)
Jonathan Frederic
Added nbformat ver conv tests, fixed some bugs
r12781
# Check that the notebook was upgraded to the latest version automatically.
(major, minor) = get_version(nb)
self.assertEqual(major, current_nbformat)
MinRK
add `nbformat.writes(version=X)` for downgrade...
r18246
def test_write_downgrade_2(self):
"""dowgrade a v3 notebook to v2"""
# Open a version 3 notebook.
with self.fopen(u'test3.ipynb', 'r') as f:
nb = read(f, u'json')
jsons = writes(nb, version=2)
nb2 = json.loads(jsons)
(major, minor) = get_version(nb2)
self.assertEqual(major, 2)