Metadata-Version: 1.1
Name: Flask-LinkTester
Version: 0.2.5
Summary: Link tester for Flask applications
Home-page: http://github.com/sfermigier/flask-linktester
Author: Stefane Fermigier
Author-email: sf@fermigier.com
License: BSD
Description: Flask-LinkTester
        ================
        
        Check links for you Flask app during integration tests, when using
        Flask-Testing.
        
        Sample code:
        
        ::
        
            class TestLinkTester(TestCase):
        
                def create_app(self):
                    ...
        
                def test_links_from_home(self):
                  crawler = LinkTester(self.client, "/")
                  crawler.crawl()
        
        For full information please refer to the online docs:
        
        http://packages.python.org/Flask-LinkTester
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
