simple-message-channels/test/conftest.py

14 lines
173 B
Python
Raw Permalink Normal View History

import pytest
2020-08-05 06:08:41 +00:00
2020-08-05 05:15:47 +00:00
from simple_message_channels import SimpleMessageChannel as SMC
@pytest.fixture
2020-08-05 05:15:47 +00:00
def smc1():
return SMC()
2020-08-05 05:15:47 +00:00
@pytest.fixture
def smc2():
return SMC()