Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lxml / src / lxml / html / tests / test_xhtml.py
Size: Mime:
import unittest, sys
from lxml.tests.common_imports import make_doctest
import lxml.html

def test_suite():
    suite = unittest.TestSuite()
    suite.addTests([make_doctest('test_xhtml.txt')])
    return suite

if __name__ == '__main__':
    unittest.main()