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
16ed35fa
Kaydet (Commit)
16ed35fa
authored
Eki 07, 2014
tarafından
Brandon Taylor
Kaydeden (comit)
Tim Graham
Eki 09, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #23612 -- Normalized fixuture paths to allow referencing relative paths on Windows.
üst
92a17eaa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
loaddata.py
django/core/management/commands/loaddata.py
+1
-1
tests.py
tests/fixtures_regress/tests.py
+12
-0
No files found.
django/core/management/commands/loaddata.py
Dosyayı görüntüle @
16ed35fa
...
...
@@ -186,7 +186,7 @@ class Command(BaseCommand):
fixture_name
=
os
.
path
.
basename
(
fixture_name
)
else
:
fixture_dirs
=
self
.
fixture_dirs
if
os
.
path
.
sep
in
fixture_name
:
if
os
.
path
.
sep
in
os
.
path
.
normpath
(
fixture_name
)
:
fixture_dirs
=
[
os
.
path
.
join
(
dir_
,
os
.
path
.
dirname
(
fixture_name
))
for
dir_
in
fixture_dirs
]
fixture_name
=
os
.
path
.
basename
(
fixture_name
)
...
...
tests/fixtures_regress/tests.py
Dosyayı görüntüle @
16ed35fa
...
...
@@ -857,3 +857,15 @@ class TestTicket11101(TransactionTestCase):
self
.
assertEqual
(
Thingy
.
objects
.
count
(),
1
)
transaction
.
set_rollback
(
True
)
self
.
assertEqual
(
Thingy
.
objects
.
count
(),
0
)
class
TestLoadFixtureFromOtherAppDirectory
(
TestCase
):
"""
#23612 -- fixtures path should be normalized to allow referencing relative
paths on Windows.
"""
fixtures
=
[
'fixtures_regress/fixtures/absolute.json'
]
def
test_fixtures_loaded
(
self
):
count
=
Absolute
.
objects
.
count
()
self
.
assertGreater
(
count
,
0
,
"Fixtures not loaded properly."
)
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