blob: 0bbaa0a313335f89d19423a8eed39f298162a384 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
from devtools.fleur.ytest import group, constraint
from devtools.fleur.ytest.integration import UnitTestGroup
@group
@constraint('library.messagebus')
class TestMessageBus(UnitTestGroup):
def __init__(self, context):
UnitTestGroup.__init__(self, context, 'MessageBus', 'library-messagebus-test-ut')
|