From 56f03e1229c4148052ee061b8a5b1d0090934d9a Mon Sep 17 00:00:00 2001 From: Konsta Vesterinen Date: Thu, 15 Aug 2013 16:56:30 +0300 Subject: [PATCH] Better class naming --- tests/batch_fetch/test_deep_relationships.py | 2 +- tests/batch_fetch/test_join_table_inheritance.py | 2 +- ...imple_relationships.py => test_one_to_many_relationships.py} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/batch_fetch/{test_simple_relationships.py => test_one_to_many_relationships.py} (97%) diff --git a/tests/batch_fetch/test_deep_relationships.py b/tests/batch_fetch/test_deep_relationships.py index b837c29..a4b6737 100644 --- a/tests/batch_fetch/test_deep_relationships.py +++ b/tests/batch_fetch/test_deep_relationships.py @@ -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' diff --git a/tests/batch_fetch/test_join_table_inheritance.py b/tests/batch_fetch/test_join_table_inheritance.py index dfab812..95abdec 100644 --- a/tests/batch_fetch/test_join_table_inheritance.py +++ b/tests/batch_fetch/test_join_table_inheritance.py @@ -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' diff --git a/tests/batch_fetch/test_simple_relationships.py b/tests/batch_fetch/test_one_to_many_relationships.py similarity index 97% rename from tests/batch_fetch/test_simple_relationships.py rename to tests/batch_fetch/test_one_to_many_relationships.py index 03dfed7..6ae00ea 100644 --- a/tests/batch_fetch/test_simple_relationships.py +++ b/tests/batch_fetch/test_one_to_many_relationships.py @@ -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'