##// END OF EJS Templates
Merge pull request #3368 from samuela/master...
Merge pull request #3368 from samuela/master Reenable bracket matching in CodeMirror. Upstream code was moved in a add-on, just load this add-on, configuration was still in the right place.

File last commit:

r7874:4a6836ce
r10779:dfacc43f merge
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)