Exemplo n.º 1
0
    def __init__(self, specfile, config_handler, command_handler):
        # record parameter for later inspection
        self.specfile_param = specfile
        self.config_handler_param = config_handler
        self.command_handler_param = command_handler

        self.check_command_param = None # used in check_command()

        # Initialize some local attributes of MockModuleCCSession, including
        # 'stopped'
        MockModuleCCSession.__init__(self)
Exemplo n.º 2
0
    def __init__(self, specfile, config_handler, command_handler):
        # record parameter for later inspection
        self.specfile_param = specfile
        self.config_handler_param = config_handler
        self.command_handler_param = command_handler

        self.check_command_param = None  # used in check_command()

        # Initialize some local attributes of MockModuleCCSession, including
        # 'stopped'
        MockModuleCCSession.__init__(self)
Exemplo n.º 3
0
 def __init__(self):
     MockModuleCCSession.__init__(self)
     self._name = None
     self._callback = None
     self._remove_name = None
     self._data = None
Exemplo n.º 4
0
 def __init__(self):
     MockModuleCCSession.__init__(self)
     self._name = None
     self._callback = None
     self._remove_name = None
     self._data = None
Exemplo n.º 5
0
 def __init__(self):
     module_spec = bundy.config.module_spec_from_file(SPECFILE_LOCATION)
     ConfigData.__init__(self, module_spec)
     MockModuleCCSession.__init__(self)
     # For inspection
     self.added_remote_modules = []