Metadata-Version: 2.1
Name: mutcm
Version: 0.0.3
Summary: Support for devops
Home-page: https://github.com/muthugit/tcm
Author: Muthupandian
Author-email: contact@muthupandian.in
License: UNKNOWN
Description: # tcm
        Yet another file based Test Case Management tool.
        
        ## Usage
        ```
        from mutcm import TCMParser
        
        tcm = TCMParser('cases')
        print(tcm.case_runs)
        # this should returns the JSON object with all runs
        
        @pytest.mark.parametrize("data", tcm.case_runs)
        def test_api(data):
            print(data)
            assert tcm.api_test(data) == data['expected']
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
