File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
minos-microservice-aggregate/tests
minos-microservice-common/minos/common
minos-microservice-saga/tests Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3535 PoolFactory ,
3636)
3737from minos .common .testing import (
38- MinosTestCase ,
38+ CommonTestCase ,
3939)
4040from minos .networks import (
4141 BrokerClientPool ,
4747CONFIG_FILE_PATH = BASE_PATH / "test_config.yml"
4848
4949
50- class AggregateTestCase (MinosTestCase , ABC ):
50+ class AggregateTestCase (CommonTestCase , ABC ):
5151 CONFIG_FILE_PATH = CONFIG_FILE_PATH
5252
5353 def get_injections (self ):
Original file line number Diff line number Diff line change 2828)
2929
3030
31- class MinosTestCase (unittest .IsolatedAsyncioTestCase ):
31+ class CommonTestCase (unittest .IsolatedAsyncioTestCase ):
3232 CONFIG_FILE_PATH : Path
3333
3434 def setUp (self ) -> None :
@@ -63,7 +63,7 @@ def __getattr__(self, item):
6363 raise AttributeError
6464
6565
66- class PostgresAsyncTestCase (MinosTestCase ):
66+ class PostgresAsyncTestCase (CommonTestCase ):
6767 def setUp (self ):
6868
6969 self ._uuid = uuid4 ()
Original file line number Diff line number Diff line change 2222 SetupMixin ,
2323)
2424from minos .common .testing import (
25- MinosTestCase ,
25+ CommonTestCase ,
2626)
2727from minos .networks import (
2828 BrokerClientPool ,
4141DB_PATH = BASE_PATH / "test_db.lmdb"
4242
4343
44- class SagaTestCase (MinosTestCase ):
44+ class SagaTestCase (CommonTestCase ):
4545 CONFIG_FILE_PATH = CONFIG_FILE_PATH
4646
4747 def get_injections (self ):
You can’t perform that action at this time.
0 commit comments