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
406de4c2
Kaydet (Commit)
406de4c2
authored
Kas 09, 2015
tarafından
Simon Charette
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #25745 -- Isolated an order_with_respect_to test.
üst
e9673c65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
tests.py
tests/order_with_respect_to/tests.py
+4
-0
No files found.
tests/order_with_respect_to/tests.py
Dosyayı görüntüle @
406de4c2
...
...
@@ -2,6 +2,7 @@ from __future__ import unicode_literals
from
operator
import
attrgetter
from
django.apps.registry
import
Apps
from
django.db
import
models
from
django.test
import
TestCase
...
...
@@ -95,9 +96,11 @@ class OrderWithRespectToTests2(TestCase):
self
.
assertSequenceEqual
(
p1
.
get_post_order
(),
[
p1_1
.
pk
,
p1_2
.
pk
,
p1_3
.
pk
])
def
test_duplicate_order_field
(
self
):
test_apps
=
Apps
([
'order_with_respect_to'
])
class
Bar
(
models
.
Model
):
class
Meta
:
apps
=
test_apps
app_label
=
'order_with_respect_to'
class
Foo
(
models
.
Model
):
...
...
@@ -106,6 +109,7 @@ class OrderWithRespectToTests2(TestCase):
class
Meta
:
order_with_respect_to
=
'bar'
apps
=
test_apps
app_label
=
'order_with_respect_to'
count
=
0
...
...
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