Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
14
venv/Lib/site-packages/nbformat/v1/tests/test_json.py
Normal file
14
venv/Lib/site-packages/nbformat/v1/tests/test_json.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
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)
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue