Commit 4e192e34 authored by Stefan Behnel's avatar Stefan Behnel

support test_fail_if_path_exists() decorator in shadow module

parent d51512a0
...@@ -15,6 +15,9 @@ def locals(**arg_types): ...@@ -15,6 +15,9 @@ def locals(**arg_types):
def test_assert_path_exists(path): def test_assert_path_exists(path):
return _empty_decorator return _empty_decorator
def test_fail_if_path_exists(path):
return _empty_decorator
class _EmptyDecoratorAndManager(object): class _EmptyDecoratorAndManager(object):
def __call__(self, x): def __call__(self, x):
return x return x
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment