##// END OF EJS Templates
cleanup boundaries of MultiKernelManager and KernelRestarter classes...
cleanup boundaries of MultiKernelManager and KernelRestarter classes - MultiKernelManager no longer has IOLoop affiliations - move connect_[channel] method to base KernelManager - connect_[channel] wraps in ZMQStream in IOLoopKM subclass - add KernelRestarter base class - use decorators to minimize code in wrapped KM methods

File last commit:

r7874:4a6836ce
r10295:42734e89
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)