Statistics
| Branch: | Tag: | Revision:

root / test / py / cmdlib / testsupport / __init__.py @ bd39b6bb

History | View | Annotate | Download (1.4 kB)

1
#
2
#
3

    
4
# Copyright (C) 2013 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Support classes and functions for testing the cmdlib module.
23

24
"""
25

    
26
from cmdlib.testsupport.cmdlib_testcase import CmdlibTestCase
27
from cmdlib.testsupport.config_mock import ConfigMock
28
from cmdlib.testsupport.iallocator_mock import CreateIAllocatorMock
29
from cmdlib.testsupport.lock_manager_mock import LockManagerMock
30
from cmdlib.testsupport.processor_mock import ProcessorMock
31
from cmdlib.testsupport.rpc_runner_mock import CreateRpcRunnerMock, \
32
  RpcResultsBuilder
33

    
34
__all__ = ["CmdlibTestCase",
35
           "ConfigMock",
36
           "CreateIAllocatorMock",
37
           "CreateRpcRunnerMock",
38
           "LockManagerMock",
39
           "ProcessorMock",
40
           "RpcResultsBuilder",
41
           ]