Better class naming

This commit is contained in:
Konsta Vesterinen
2013-08-15 16:56:30 +03:00
parent af8da9809b
commit 56f03e1229
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch, with_backrefs
from tests import TestCase
class TestBatchFetch(TestCase):
class TestBatchFetchDeepRelationships(TestCase):
def create_models(self):
class User(self.Base):
__tablename__ = 'user'

View File

@@ -3,7 +3,7 @@ from sqlalchemy_utils import batch_fetch
from tests import TestCase
class TestBatchFetch(TestCase):
class TestBatchFetchAssociations(TestCase):
def create_models(self):
class Category(self.Base):
__tablename__ = 'category'

View File

@@ -4,7 +4,7 @@ from sqlalchemy_utils import batch_fetch
from tests import TestCase
class TestBatchFetch(TestCase):
class TestBatchFetchOneToManyRelationships(TestCase):
def create_models(self):
class User(self.Base):
__tablename__ = 'user'