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
1ae64e96
Kaydet (Commit)
1ae64e96
authored
Ara 24, 2012
tarafından
Luke Plant
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed a dependence on set-ordering in tests
üst
c31c2c92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
tests.py
tests/regressiontests/admin_filters/tests.py
+5
-5
No files found.
tests/regressiontests/admin_filters/tests.py
Dosyayı görüntüle @
1ae64e96
...
...
@@ -83,11 +83,11 @@ class DepartmentListFilterLookupWithNonStringValue(SimpleListFilter):
parameter_name
=
'department'
def
lookups
(
self
,
request
,
model_admin
):
return
set
([
return
s
orted
(
s
et
([
(
employee
.
department
.
id
,
# Intentionally not a string (Refs #19318)
employee
.
department
.
code
)
for
employee
in
model_admin
.
queryset
(
request
)
.
all
()
])
])
)
def
queryset
(
self
,
request
,
queryset
):
if
self
.
value
():
...
...
@@ -683,9 +683,9 @@ class ListFiltersTests(TestCase):
filterspec
=
changelist
.
get_filters
(
request
)[
0
][
-
1
]
self
.
assertEqual
(
force_text
(
filterspec
.
title
),
'department'
)
choices
=
list
(
filterspec
.
choices
(
changelist
))
self
.
assertEqual
(
choices
[
2
][
'display'
],
'DEV'
)
self
.
assertEqual
(
choices
[
2
][
'selected'
],
True
)
self
.
assertEqual
(
choices
[
2
][
'query_string'
],
'?department=
%
s'
%
self
.
john
.
pk
)
self
.
assertEqual
(
choices
[
1
][
'display'
],
'DEV'
)
self
.
assertEqual
(
choices
[
1
][
'selected'
],
True
)
self
.
assertEqual
(
choices
[
1
][
'query_string'
],
'?department=
%
s'
%
self
.
john
.
pk
)
def
test_fk_with_to_field
(
self
):
"""
...
...
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