# -*- coding: utf-8 -*- """ test_ext_graphviz ~~~~~~~~~~~~~~~~~ Test sphinx.ext.graphviz extension. :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import re from util import with_app @with_app('html', testroot='ext-graphviz') def test_graphviz(app, status, warning): app.builder.build_all() if "dot command 'dot' cannot be run" not in warning.getvalue(): content = (app.outdir / 'index.html').text() html = ('
\s*\s*
caption of graph') assert re.search(html, content, re.S)