Metadata-Version: 1.0
Name: customnoseplugins
Version: 1.8.5
Summary: test plan plugins for the nose testing framework
Home-page: UNKNOWN
Author: bao hongbin
Author-email: hongbin.bao@gmail.com
License: MIT
Description: 
        Extra plugins for the nose testing framework to load test case from a plan file.
        
        
        usage:
        
        >>> nosetests --with-plan-loader --plan-file-name path_of_plan_file --plan-loop-number 10
        
        
        plan file content:
        
        [tests]
        
        packagename.modulename.classname.testcasename = 3
        
        packagename.modulename.classname.testcasename = 5
        
        
        FUTURE support plan file content:
        
        [tests]
        
        packagename.modulename:classname.testcasename = 3
        
        packagename.modulename:classname.testcasename = 5
        
        
        1: allow to custom a test plan file. the plan file can define the test cases name list  and the executed  loop count in one loop.
         All tests will be executed from top to end follow it's own loop count.
        
        2: allow to define the test cycle number. the test will be executed cyclically until exceed the cycle number. default only
         executed 1 cycle.
        
        
        start from command-line:
            nosetests --with-plan-loader --plan-loop-number 100 --with-file-output --verbosity 2
        
        start programmly:
        
            >>> from customnoseplugins.planloader import PlanLoaderPlugin
        
            >>> nose.run(argv=['--with-plan-loader', '--plan-file-name', 'plan', '--plan-loop-number', '100'], 
        addplugins=[PlanLoaderPlugin()])
        
        
Platform: UNKNOWN
