Metadata-Version: 1.1
Name: prego
Version: 0.1
Summary: System test framework for POSIX shell
Home-page: https://bitbucket.org/DavidVilla/prego
Author: David Villa Alises
Author-email: David.Villa@gmail.com
License: GPLv3
Description: 
        Prego is a system test framework running as Python unittest testcases.
        
        
        Matchers
        --------
        
        - test.assert_that(Host('www.google.com'), reachable())
        - test.assert_that(Host('www.google.com'), listen_port(80))
        
        + test.assert_that(Host('localhost'), listen_port(2000))
        + test.assert_that(localhost, listen_port(2000))
        + test.assert_that(localhost, is_not(listen_port(3000)))
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Requires: hamcrest
Requires: commodity
