We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c197f8 commit d99d6ffCopy full SHA for d99d6ff
django_mock_queries/query.py
@@ -34,7 +34,8 @@ class MockSet(with_metaclass(MockSetMeta, MagicMock)):
34
'using',
35
'select_related',
36
'prefetch_related',
37
- 'select_for_update'
+ 'select_for_update',
38
+ 'iterator'
39
]
40
41
def __init__(self, *initial_items, **kwargs):
setup.py
@@ -20,7 +20,7 @@ def parse_requirements(filename):
20
21
setup(
22
name='django_mock_queries',
23
- version='2.1.5',
+ version='2.1.6',
24
description='A django library for mocking queryset functions in memory for testing',
25
long_description=read_md('README.md'),
26
url='https://github.com/stphivos/django-mock-queries',
0 commit comments