Merge 'develop' into feature/enhance-strategy-resolving

This commit is contained in:
gcarq
2018-03-26 16:23:25 +02:00
17 changed files with 139 additions and 339 deletions

View File

@@ -20,7 +20,6 @@ def test_search_strategy():
def test_load_strategy(result):
strategy = StrategyResolver()
strategy.logger = logging.getLogger(__name__)
assert not hasattr(StrategyResolver, 'custom_strategy')
strategy._load_strategy('TestStrategy')
@@ -33,7 +32,6 @@ def test_load_strategy(result):
def test_load_not_found_strategy(caplog):
strategy = StrategyResolver()
strategy.logger = logging.getLogger(__name__)
assert not hasattr(StrategyResolver, 'custom_strategy')
strategy._load_strategy('NotFoundStrategy')