~spiv/testtools/test-parameterisation

« back to all changes in this revision

Viewing changes to pyunit3k/__init__.py

  • Committer: Andrew Bennetts
  • Date: 2008-09-15 12:59:02 UTC
  • Revision ID: andrew@puzzling.org-20080915125902-w2dit2rmwnjm2y72
First draft of multiply_test_suite_by_scenarios

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
__all__ = [
6
6
    'clone_test_with_new_id',
7
7
    'iterate_tests',
 
8
    'multiply_test_suite_by_scenarios',
8
9
    'ITestResult',
9
10
    'MultiTestResult',
 
11
    'Scenario',
10
12
    'TestCase',
11
13
    'TestResult',
12
14
    ]
13
15
 
14
16
from pyunit3k.interfaces import ITestResult
 
17
from pyunit3k.scenario import multiply_test_suite_by_scenarios, Scenario
15
18
from pyunit3k.testcase import TestCase, clone_test_with_new_id
16
19
from pyunit3k.testresult import MultiTestResult, TestResult
17
20
from pyunit3k.utils import iterate_tests