Metadata-Version: 1.0
Name: moztest
Version: 0.1
Summary: Package for storing and outputting Mozilla test results
Home-page: https://wiki.mozilla.org/Auto-tools/Projects/MozBase
Author: Mozilla Automation and Tools team
Author-email: tools@lists.mozilla.org
License: MPL
Description: # Moztest
        
        Package for handling Mozilla test results.
        
        
        ## Usage example
        
        This shows how you can create an xUnit representation of python unittest results.
        
            from results import TestResultCollection
            from output import XUnitOutput
        
            collection = TestResultCollection.from_unittest_results(results)
            out = XUnitOutput()
            with open('out.xml', 'w') as f:
                out.serialize(collection, f)
        
Keywords: mozilla
Platform: UNKNOWN
