Show More
@@ -22,5 +22,7 b' def clean_dir():' | |||
|
22 | 22 | def test_command_line(): |
|
23 | 23 | with open(ref_ipynb_fname, 'rb') as f: |
|
24 | 24 | ref_output = f.read() |
|
25 |
|
|
|
25 | proc = subprocess.Popen(['./rst2ipynb.py', test_rst_fname], | |
|
26 | stdout=subprocess.PIPE) | |
|
27 | output = proc.communicate()[0] | |
|
26 | 28 | nt.assert_equal(ref_output, output) |
General Comments 0
You need to be logged in to leave comments.
Login now