Better class naming
This commit is contained in:
@@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch, with_backrefs
|
|||||||
from tests import TestCase
|
from tests import TestCase
|
||||||
|
|
||||||
|
|
||||||
class TestBatchFetch(TestCase):
|
class TestBatchFetchDeepRelationships(TestCase):
|
||||||
def create_models(self):
|
def create_models(self):
|
||||||
class User(self.Base):
|
class User(self.Base):
|
||||||
__tablename__ = 'user'
|
__tablename__ = 'user'
|
||||||
|
@@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch
|
|||||||
from tests import TestCase
|
from tests import TestCase
|
||||||
|
|
||||||
|
|
||||||
class TestBatchFetch(TestCase):
|
class TestBatchFetchAssociations(TestCase):
|
||||||
def create_models(self):
|
def create_models(self):
|
||||||
class Category(self.Base):
|
class Category(self.Base):
|
||||||
__tablename__ = 'category'
|
__tablename__ = 'category'
|
||||||
|
@@ -4,7 +4,7 @@ from sqlalchemy_utils import batch_fetch
|
|||||||
from tests import TestCase
|
from tests import TestCase
|
||||||
|
|
||||||
|
|
||||||
class TestBatchFetch(TestCase):
|
class TestBatchFetchOneToManyRelationships(TestCase):
|
||||||
def create_models(self):
|
def create_models(self):
|
||||||
class User(self.Base):
|
class User(self.Base):
|
||||||
__tablename__ = 'user'
|
__tablename__ = 'user'
|
Reference in New Issue
Block a user