mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Fix failing tests.
This commit is contained in:
parent
455174f19d
commit
9d7cc07836
2 changed files with 4 additions and 4 deletions
|
@ -73,7 +73,7 @@ mapped_classes = []
|
|||
class TableMetaclass(DeclarativeMeta):
|
||||
def __init__(cls, name, bases, attrs):
|
||||
super(TableMetaclass, cls).__init__(name, bases, attrs)
|
||||
if hasattr(cls, '__tablename__'):
|
||||
if hasattr(cls, '__tablename__') or hasattr(cls, '__table__'):
|
||||
mapped_classes.append(cls)
|
||||
cls.translation_classes = []
|
||||
|
||||
|
|
|
@ -33,12 +33,12 @@ def test_variable_names_2(table):
|
|||
|
||||
def test_class_order():
|
||||
"""The declarative classes should be defined in alphabetical order.
|
||||
Except for Language which should be first.
|
||||
Except for Language and VersionGroup which should be first.
|
||||
"""
|
||||
class_names = [table.__name__ for table in tables.mapped_classes]
|
||||
def key(name):
|
||||
return name != 'Language', name
|
||||
print [(a,b) for (a,b) in zip(class_names, sorted(class_names, key=key)) if a!=b]
|
||||
return name not in ('Language', 'VersionGroup'), name
|
||||
print "Unordered pairs:", [(a,b) for (a,b) in zip(class_names, class_names[1:]) if key(a)>key(b)]
|
||||
assert class_names == sorted(class_names, key=key)
|
||||
|
||||
def test_i18n_table_creation():
|
||||
|
|
Loading…
Reference in a new issue