9 lines
139 B
Python
9 lines
139 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def smc():
|
|
from simple_message_channels import SimpleMessageChannel
|
|
|
|
return SimpleMessageChannel()
|