10 lines
186 B
Python
10 lines
186 B
Python
![]() |
from pathlib import Path
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def mockrules():
|
||
|
'''Provides a path to test rules resources.'''
|
||
|
return Path(__file__).parent.joinpath('resources', 'rules')
|