mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
* Move all fixtures to pytest plugin folder * Add core dunder all * Update other dunder all's * Black reformat
14 lines
179 B
Python
14 lines
179 B
Python
import pytest
|
|
|
|
__all__ = ["cog_mgr", "default_dir"]
|
|
|
|
|
|
@pytest.fixture()
|
|
def cog_mgr(red):
|
|
return red.cog_mgr
|
|
|
|
|
|
@pytest.fixture()
|
|
def default_dir(red):
|
|
return red.main_dir
|