##// END OF EJS Templates
Use default OS shell to run system commands...
Use default OS shell to run system commands Instead of using os.system which uses /bin/sh, this uses subprocess.call (the replacement of os.system) to run the command using the default shell of the OS. With this, one can use more advanced commands for bash, zsh, ksh, ... I also edited the docstring, added comments and fixed the handling of return codes.

File last commit:

r7874:4a6836ce
r12366:47045d65
Show More
test_json.py
33 lines | 844 B | text/x-python | PythonLexer
Brian E. Granger
Added collapsed field to the code cell.
r4533 import pprint
Brian E. Granger
Full versioning added to nbformat.
r4406 from unittest import TestCase
from ..nbjson import reads, writes
MinRK
add NBFormatTestCase base class, to consolidate nbformat testing
r6209 from .. import nbjson
Brian E. Granger
Full versioning added to nbformat.
r4406 from .nbexamples import nb0
MinRK
add NBFormatTestCase base class, to consolidate nbformat testing
r6209 from . import formattest
Brian E. Granger
Full versioning added to nbformat.
r4406
MinRK
add NBFormatTestCase base class, to consolidate nbformat testing
r6209 from .nbexamples import nb0
MinRK
NBFormatTest is now a mixin, rather than a base class
r6476 class TestJSON(formattest.NBFormatTest, TestCase):
MinRK
add NBFormatTestCase base class, to consolidate nbformat testing
r6209
nb0_ref = None
ext = 'ipynb'
mod = nbjson
Brian E. Granger
Full versioning added to nbformat.
r4406
MinRK
split likely multiline strings when writing to/from JSON
r5278 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)
Bradley M. Froehle
s/assertEquals/assertEqual/
r7874 self.assertEqual(nbjson.reads(s),nb0)
MinRK
split likely multiline strings when writing to/from JSON
r5278
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)
Bradley M. Froehle
s/assertEquals/assertEqual/
r7874 self.assertEqual(nbjson.reads(s),nb0)
Brian E. Granger
Full versioning added to nbformat.
r4406