Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
cc8c02fa
Kaydet (Commit)
cc8c02fa
authored
Kas 11, 2015
tarafından
Simon Charette
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #25693 -- Added a regression test for `to_attr` validation on forward m2m.
üst
4a9c32f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
tests.py
tests/prefetch_related/tests.py
+12
-1
No files found.
tests/prefetch_related/tests.py
Dosyayı görüntüle @
cc8c02fa
...
...
@@ -223,7 +223,18 @@ class PrefetchRelatedTests(TestCase):
self
.
assertIn
(
'prefetch_related'
,
str
(
cm
.
exception
))
self
.
assertIn
(
"name"
,
str
(
cm
.
exception
))
def
test_m2m_shadow
(
self
):
def
test_forward_m2m_to_attr_conflict
(
self
):
msg
=
'to_attr=authors conflicts with a field on the Book model.'
authors
=
Author
.
objects
.
all
()
with
self
.
assertRaisesMessage
(
ValueError
,
msg
):
list
(
Book
.
objects
.
prefetch_related
(
Prefetch
(
'authors'
,
queryset
=
authors
,
to_attr
=
'authors'
),
))
# Without the ValueError, an author was deleted due to the implicit
# save of the relation assignment.
self
.
assertEqual
(
self
.
book1
.
authors
.
count
(),
3
)
def
test_reverse_m2m_to_attr_conflict
(
self
):
msg
=
'to_attr=books conflicts with a field on the Author model.'
poems
=
Book
.
objects
.
filter
(
title
=
'Poems'
)
with
self
.
assertRaisesMessage
(
ValueError
,
msg
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment