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
5d9da759
Kaydet (Commit)
5d9da759
authored
Ock 05, 2014
tarafından
Aymeric Augustin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed app registry cleanup in app-loading tests.
üst
d4b059d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
tests.py
tests/app_loading/tests.py
+4
-6
No files found.
tests/app_loading/tests.py
Dosyayı görüntüle @
5d9da759
...
...
@@ -15,14 +15,8 @@ class EggLoadingTest(TestCase):
self
.
old_path
=
sys
.
path
[:]
self
.
egg_dir
=
'
%
s/eggs'
%
os
.
path
.
dirname
(
upath
(
__file__
))
# The models need to be removed after the test in order to prevent bad
# interactions with the flush operation in other tests.
self
.
_old_models
=
apps
.
all_models
[
'app_loading'
]
.
copy
()
def
tearDown
(
self
):
apps
.
all_models
[
'app_loading'
]
=
self
.
_old_models
apps
.
clear_cache
()
sys
.
path
=
self
.
old_path
def
test_egg1
(
self
):
...
...
@@ -32,6 +26,7 @@ class EggLoadingTest(TestCase):
with
self
.
settings
(
INSTALLED_APPS
=
[
'app_with_models'
]):
models_module
=
apps
.
get_app_config
(
'app_with_models'
)
.
models_module
self
.
assertIsNotNone
(
models_module
)
del
apps
.
all_models
[
'app_with_models'
]
def
test_egg2
(
self
):
"""Loading an app from an egg that has no models returns no models (and no error)"""
...
...
@@ -40,6 +35,7 @@ class EggLoadingTest(TestCase):
with
self
.
settings
(
INSTALLED_APPS
=
[
'app_no_models'
]):
models_module
=
apps
.
get_app_config
(
'app_no_models'
)
.
models_module
self
.
assertIsNone
(
models_module
)
del
apps
.
all_models
[
'app_no_models'
]
def
test_egg3
(
self
):
"""Models module can be loaded from an app located under an egg's top-level package"""
...
...
@@ -48,6 +44,7 @@ class EggLoadingTest(TestCase):
with
self
.
settings
(
INSTALLED_APPS
=
[
'omelet.app_with_models'
]):
models_module
=
apps
.
get_app_config
(
'app_with_models'
)
.
models_module
self
.
assertIsNotNone
(
models_module
)
del
apps
.
all_models
[
'app_with_models'
]
def
test_egg4
(
self
):
"""Loading an app with no models from under the top-level egg package generates no error"""
...
...
@@ -56,6 +53,7 @@ class EggLoadingTest(TestCase):
with
self
.
settings
(
INSTALLED_APPS
=
[
'omelet.app_no_models'
]):
models_module
=
apps
.
get_app_config
(
'app_no_models'
)
.
models_module
self
.
assertIsNone
(
models_module
)
del
apps
.
all_models
[
'app_no_models'
]
def
test_egg5
(
self
):
"""Loading an app from an egg that has an import error in its models module raises that error"""
...
...
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