File: __init__.py

package info (click to toggle)
python-flexmock 0.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 460 kB
  • sloc: python: 3,802; makefile: 17; sh: 14
file content (34 lines) | stat: -rw-r--r-- 924 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""Tests for flexmock.

Tests under this module should not depend on any test runner.
"""

from .arg_matching import ArgumentMatchingTestCase
from .call_count import CallCountTestCase
from .common import CommonTestCase
from .conditional import ConditionalAssertionsTestCase
from .derived import DerivedTestCase
from .mocking import MockingTestCase
from .ordered import OrderedTestCase
from .proxied import ProxiedTestCase
from .spying import SpyingTestCase
from .stubbing import StubbingTestCase
from .teardown import TeardownTestCase


class FlexmockTestCase(
    ArgumentMatchingTestCase,
    CallCountTestCase,
    CommonTestCase,
    ConditionalAssertionsTestCase,
    DerivedTestCase,
    MockingTestCase,
    OrderedTestCase,
    ProxiedTestCase,
    SpyingTestCase,
    StubbingTestCase,
    TeardownTestCase,
):
    """This class should be imported by other test modules to run full flexmock
    test suite.
    """