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
d95b22bd
Kaydet (Commit)
d95b22bd
authored
Kas 13, 2015
tarafından
Simon Charette
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #25745 -- Isolated some postgres array field check tests.
üst
64240263
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
test_array.py
tests/postgres_tests/test_array.py
+11
-0
No files found.
tests/postgres_tests/test_array.py
Dosyayı görüntüle @
d95b22bd
...
...
@@ -4,6 +4,7 @@ import unittest
import
uuid
from
django
import
forms
from
django.apps.registry
import
Apps
from
django.core
import
exceptions
,
serializers
,
validators
from
django.core.management
import
call_command
from
django.db
import
IntegrityError
,
connection
,
models
...
...
@@ -328,18 +329,28 @@ class TestOtherTypesExactQuerying(PostgreSQLTestCase):
class
TestChecks
(
PostgreSQLTestCase
):
def
test_field_checks
(
self
):
test_apps
=
Apps
([
'postgres_tests'
])
class
MyModel
(
PostgreSQLModel
):
field
=
ArrayField
(
models
.
CharField
())
class
Meta
:
apps
=
test_apps
model
=
MyModel
()
errors
=
model
.
check
()
self
.
assertEqual
(
len
(
errors
),
1
)
self
.
assertEqual
(
errors
[
0
]
.
id
,
'postgres.E001'
)
def
test_invalid_base_fields
(
self
):
test_apps
=
Apps
([
'postgres_tests'
])
class
MyModel
(
PostgreSQLModel
):
field
=
ArrayField
(
models
.
ManyToManyField
(
'postgres_tests.IntegerArrayModel'
))
class
Meta
:
apps
=
test_apps
model
=
MyModel
()
errors
=
model
.
check
()
self
.
assertEqual
(
len
(
errors
),
1
)
...
...
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