コード例 #1
0
ファイル: test_latextools.py プロジェクト: terrdavis/ipython
def test_latex_to_html():
    img = latextools.latex_to_html("$x^2$")
    nt.assert_in("data:image/png;base64,iVBOR", img)
コード例 #2
0
ファイル: test_latextools.py プロジェクト: deep-jkl/ipython
def test_latex_to_html():
    img = latextools.latex_to_html("$x^2$")
    assert "data:image/png;base64,iVBOR" in img
コード例 #3
0
ファイル: test_latextools.py プロジェクト: 2t7/ipython
def test_latex_to_html():
    img = latextools.latex_to_html("$x^2$")
    nt.assert_in("data:image/png;base64,iVBOR", img)