summaryrefslogtreecommitdiff
path: root/tests/basic
diff options
context:
space:
mode:
authorFlorian Apolloner <apollo13@users.noreply.github.com>2017-01-14 14:32:07 +0100
committerTim Graham <timograham@gmail.com>2017-01-14 08:32:07 -0500
commit84c1826ded17b2d74f66717fb745fc36e37949fd (patch)
tree24b9e86375c400e670fd737c2619c013e665704c /tests/basic
parent611ef422b173b450b1fc6f7f94eb262961b24e54 (diff)
downloaddjango-84c1826ded17b2d74f66717fb745fc36e37949fd.tar.gz
Fixed #27718 -- Added QuerySet.union(), intersection(), difference().
Thanks Mariusz Felisiak for review and Oracle assistance. Thanks Tim Graham for review and writing docs.
Diffstat (limited to 'tests/basic')
-rw-r--r--tests/basic/tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py
index 05a49ac3ab..dd7570c5b9 100644
--- a/tests/basic/tests.py
+++ b/tests/basic/tests.py
@@ -589,6 +589,9 @@ class ManagerTest(SimpleTestCase):
'_insert',
'_update',
'raw',
+ 'union',
+ 'intersection',
+ 'difference',
]
def test_manager_methods(self):