##// END OF EJS Templates
Download as always starts downloads in new window/tab...
Download as always starts downloads in new window/tab This is a slightly worse user experience if it succeeds, because the new tab flashes up before closing again, but it will let us display an informative error page if it fails, without navigating the user away from the interactive notebook view.

File last commit:

r7874:4a6836ce
r13838:19c6ee99
Show More
test_json.py
34 lines | 926 B | text/x-python | PythonLexer
Brian E. Granger
Added collapsed field to the code cell.
r4533 import pprint
Brian E. Granger
Full versioning added to nbformat.
r4406 from unittest import TestCase
from ..nbjson import reads, writes
from .nbexamples import nb0
class TestJSON(TestCase):
def test_roundtrip(self):
s = writes(nb0)
Brian E. Granger
Added collapsed field to the code cell.
r4533 # print
# print pprint.pformat(nb0,indent=2)
# print
# print pprint.pformat(reads(s),indent=2)
# print
# print s
Bradley M. Froehle
s/assertEquals/assertEqual/
r7874 self.assertEqual(reads(s),nb0)
MinRK
split likely multiline strings when writing to/from JSON
r5278
def test_roundtrip_nosplit(self):
"""Ensure that multiline blobs are still readable"""
# ensures that notebooks written prior to splitlines change
# are still readable.
s = writes(nb0, split_lines=False)
Bradley M. Froehle
s/assertEquals/assertEqual/
r7874 self.assertEqual(reads(s),nb0)
MinRK
split likely multiline strings when writing to/from JSON
r5278
def test_roundtrip_split(self):
"""Ensure that splitting multiline blocks is safe"""
# This won't differ from test_roundtrip unless the default changes
s = writes(nb0, split_lines=True)
Bradley M. Froehle
s/assertEquals/assertEqual/
r7874 self.assertEqual(reads(s),nb0)
Brian E. Granger
Full versioning added to nbformat.
r4406