##// END OF EJS Templates
Allow the %run magic with '-b' to specify a file....
Allow the %run magic with '-b' to specify a file. The syntax would be: %run -d -b file2.py:30 file1.py to break at line 30 of file2.py when running file1.py. The old syntax %run -d -b 20 file1.py still works the way it used to. Suggested by user gozzilli on StackOverflow (http://stackoverflow.com/questions/14305203/ipython-set-a-breakpoint-in-imported-file/).

File last commit:

r7874:4a6836ce
r9052:473fcf09
Show More
test_json.py
34 lines | 926 B | text/x-python | PythonLexer
import pprint
from unittest import TestCase
from ..nbjson import reads, writes
from .nbexamples import nb0
class TestJSON(TestCase):
def test_roundtrip(self):
s = writes(nb0)
# print
# print pprint.pformat(nb0,indent=2)
# print
# print pprint.pformat(reads(s),indent=2)
# print
# print s
self.assertEqual(reads(s),nb0)
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)
self.assertEqual(reads(s),nb0)
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)
self.assertEqual(reads(s),nb0)