Skip to content
This repository has been archived by the owner on Nov 8, 2020. It is now read-only.

sphinx-doc/sphinx-testing

Repository files navigation

sphinx-testing

sphinx-testing provides testing utility classes and functions for Sphinx extensions.

https://travis-ci.org/sphinx-doc/sphinx-testing.svg?branch=master https://coveralls.io/repos/sphinx-doc/sphinx-testing/badge.png?branch=master Number of PyPI downloads Wheel Status

Important

This package has been deprecated. Please use sphinx.testing package instead. It is bundled with Sphinx.

Setup

Use easy_install or pip:

$ sudo pip install sphinx-testing

Usage

Example:

from sphinx_testing import with_app

@with_app(buildername='html', srcdir='/path/to/examples', copy_srcdir_to_tmpdir=True)
def test_sphinx_build(app, status, warning):
    app.build()
    html = (app.outdir / 'index.html').read_text()
    assert '<h1>Hello world</h1>' in html

Requirements

  • Python 2.6, 2.7, 3.4 or later
  • Sphinx 0.6 or later
  • six

License

BSD License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages