mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
13 lines
178 B
Python
13 lines
178 B
Python
import pytest
|
|
|
|
from ahriman.core.alpm.aur import AUR
|
|
|
|
|
|
@pytest.fixture
|
|
def aur() -> AUR:
|
|
"""
|
|
aur helper fixture
|
|
:return: aur helper instance
|
|
"""
|
|
return AUR()
|