##// END OF EJS Templates
update release/authors...
update release/authors - don't tell people to email Fernando every time IPython crashes :) - supported Pythons updated to remove 3.1, add 3.3. - `IPython.__author__` is now just ipython-dev, rather than assorted individuals - don't mention old, unsupported Windowses (I would argue that XP should be dropped as well, but I know that won't fly)

File last commit:

r7874:4a6836ce
r9188:449de656
Show More
test_json.py
14 lines | 219 B | text/x-python | PythonLexer
from unittest import TestCase
from ..nbjson import reads, writes
from .nbexamples import nb0
class TestJSON(TestCase):
def test_roundtrip(self):
s = writes(nb0)
self.assertEqual(reads(s),nb0)