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
ca43ee9d
Kaydet (Commit)
ca43ee9d
authored
Eki 07, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #17917 -- Added a test for pickling annotations on fields with callable defaults.
Fixed in
f403653c
.
üst
9a6fc960
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
tests.py
tests/queryset_pickle/tests.py
+6
-0
No files found.
tests/queryset_pickle/tests.py
Dosyayı görüntüle @
ca43ee9d
...
...
@@ -5,6 +5,7 @@ import pickle
import
unittest
import
warnings
from
django.db
import
models
from
django.test
import
TestCase
from
django.utils
import
six
from
django.utils.encoding
import
force_text
...
...
@@ -130,6 +131,11 @@ class PickleabilityTestCase(TestCase):
m2ms
=
pickle
.
loads
(
pickle
.
dumps
(
m2ms
))
self
.
assertQuerysetEqual
(
m2ms
,
[
m2m
],
lambda
x
:
x
)
def
test_annotation_with_callable_default
(
self
):
# Happening.when has a callable default of datetime.datetime.now.
qs
=
Happening
.
objects
.
annotate
(
latest_time
=
models
.
Max
(
'when'
))
self
.
assert_pickles
(
qs
)
def
test_missing_django_version_unpickling
(
self
):
"""
#21430 -- Verifies a warning is raised for querysets that are
...
...
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