
Also: Allow override of database name and user in tests (important for me as I would have to mess with my PSQL and MySQL database users otherwise) Use dict.items instead of six.iteritems as it sporadically caused RuntimeError: dictionary changed size during iteration in Python 2.6 tests. Fix typo DNS to DSN Adds Python 3.5 to tox.ini Added an .editorconfig Import babel.dates in sqlalchemy_utils.i18n as an exception would be raised when using the latest versions of babel.
20 lines
570 B
Python
20 lines
570 B
Python
class TestInstrumentedList(object):
|
|
def test_any_returns_true_if_member_has_attr_defined(
|
|
self,
|
|
Category,
|
|
Article
|
|
):
|
|
category = Category()
|
|
category.articles.append(Article())
|
|
category.articles.append(Article(name=u'some name'))
|
|
assert category.articles.any('name')
|
|
|
|
def test_any_returns_false_if_no_member_has_attr_defined(
|
|
self,
|
|
Category,
|
|
Article
|
|
):
|
|
category = Category()
|
|
category.articles.append(Article())
|
|
assert not category.articles.any('name')
|