remove obsolete assertions

This commit is contained in:
gcarq 2018-03-25 16:30:49 +02:00
parent a356edb117
commit 157f7da8ce

View File

@ -21,29 +21,19 @@ def test_search_strategy():
def test_load_strategy(result):
resolver = StrategyResolver()
assert not hasattr(StrategyResolver, 'custom_strategy')
resolver._load_strategy('TestStrategy')
assert not hasattr(StrategyResolver, 'custom_strategy')
assert hasattr(resolver.strategy, 'populate_indicators')
assert 'adx' in resolver.strategy.populate_indicators(result)
def test_load_strategy_custom_directory(result):
resolver = StrategyResolver()
assert not hasattr(StrategyResolver, 'custom_strategy')
extra_dir = os.path.join('some', 'path')
with pytest.raises(
FileNotFoundError,
match=r".*No such file or directory: '{}'".format(extra_dir)):
resolver._load_strategy('TestStrategy', extra_dir)
assert not hasattr(StrategyResolver, 'custom_strategy')
assert hasattr(resolver.strategy, 'populate_indicators')
assert 'adx' in resolver.strategy.populate_indicators(result)