##// END OF EJS Templates
add stdout flag and description in help
add stdout flag and description in help

File last commit:

r9606:6e68b733
r9625:7086bcbb
Show More
test_templates.py
18 lines | 414 B | text/x-python | PythonLexer
import io
import nose.tools as nt
import os
from nose.tools import nottest
from converters.template import ConverterTemplate
def test_evens():
reflist = [
'tests/ipynbref/IntroNumPy.orig'
]
# null template should return empty
C = ConverterTemplate(tplfile='null')
C.read('tests/ipynbref/IntroNumPy.orig.ipynb')
result,_ = C.convert()
nt.assert_equal(result,'')