##// END OF EJS Templates
inherit blogger
inherit blogger

File last commit:

r9627:036e7d24
r9632:53fe59b0
Show More
test_templates.py
18 lines | 400 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()
C.read('tests/ipynbref/IntroNumPy.orig.ipynb')
result,_ = C.convert()
nt.assert_equal(result,'')