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
a1709220
Kaydet (Commit)
a1709220
authored
Eyl 24, 2014
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added an Oracle workaround for a geogapp test; refs #23504.
üst
729cd6a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
tests.py
django/contrib/gis/tests/geogapp/tests.py
+2
-2
No files found.
django/contrib/gis/tests/geogapp/tests.py
Dosyayı görüntüle @
a1709220
...
...
@@ -9,7 +9,7 @@ from unittest import skipUnless
from
django.contrib.gis.gdal
import
HAS_GDAL
from
django.contrib.gis.geos
import
HAS_GEOS
from
django.contrib.gis.measure
import
D
from
django.contrib.gis.tests.utils
import
postgis
from
django.contrib.gis.tests.utils
import
oracle
,
postgis
from
django.test
import
TestCase
,
skipUnlessDBFeature
from
django.utils._os
import
upath
...
...
@@ -96,7 +96,7 @@ class GeographyTest(TestCase):
def
test06_geography_area
(
self
):
"Testing that Area calculations work on geography columns."
# SELECT ST_Area(poly) FROM geogapp_zipcode WHERE code='77002';
ref_area
=
5439084.70637573
ref_area
=
5439
100.95415646
if
oracle
else
5439
084.70637573
tol
=
5
z
=
Zipcode
.
objects
.
area
()
.
get
(
code
=
'77002'
)
self
.
assertAlmostEqual
(
z
.
area
.
sq_m
,
ref_area
,
tol
)
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