@itziakos pointed out that there is a facility in unittest to generate a test-case based on a top-level function using unittest.FunctionTestCase(callable).
This is something that could easily be added to the haas test discovery system. This will probably start by matching functions names to the regex ^test_.*.
@itziakos pointed out that there is a facility in
unittestto generate a test-case based on a top-level function usingunittest.FunctionTestCase(callable).This is something that could easily be added to the haas test discovery system. This will probably start by matching functions names to the regex
^test_.*.