Example #1
0
 def start(iterations=int_(min=0, max=10), time_interval=int_(min=0)):
     with MockTransaction:
         state = {'property': 'value'}
         config = {
             'log_directory': 'dir',
             'log_level': 2,
             'local_manager_interval': str(time_interval)
         }
         paths = [manager.DEFAILT_CONFIG_PATH, manager.CONFIG_PATH]
         fields = manager.REQUIRED_FIELDS
         expect(manager).read_and_validate_config(paths, fields). \
             and_return(config).once()
         expect(common).init_logging('dir', 'local-manager.log', 2).once()
         expect(common).start(manager.init_state, manager.execute, config,
                              time_interval).and_return(state).once()
         assert manager.start() == state
 def start(
         iterations=int_(min=0, max=10),
         time_interval=int_(min=0)
 ):
     with MockTransaction:
         state = {'property': 'value'}
         config = {
             'log_directory': 'dir',
             'log_level': 2,
             'local_manager_interval': str(time_interval)}
         paths = [manager.DEFAILT_CONFIG_PATH, manager.CONFIG_PATH]
         fields = manager.REQUIRED_FIELDS
         expect(manager).read_and_validate_config(paths, fields). \
             and_return(config).once()
         expect(common).init_logging('dir', 'local-manager.log', 2).once()
         expect(common).start(manager.init_state,
                              manager.execute,
                              config,
                              time_interval).and_return(state).once()
         assert manager.start() == state
Example #3
0
# Copyright 2012 Anton Beloglazov
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import neat.locals.manager as manager


manager.start()