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
29ddae74
Kaydet (Commit)
29ddae74
authored
Ock 25, 2014
tarafından
Carl Meyer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #21871 -- Fixed Apps.is_installed() for apps with custom label.
Thanks Aymeric for design discussion.
üst
f5f556db
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
registry.py
django/apps/registry.py
+1
-2
apps.py
tests/apps/apps.py
+1
-0
tests.py
tests/apps/tests.py
+1
-0
No files found.
django/apps/registry.py
Dosyayı görüntüle @
29ddae74
...
...
@@ -204,8 +204,7 @@ class Apps(object):
It's safe to call this method at import time, even while the registry
is being populated. It returns False for apps that aren't loaded yet.
"""
app_config
=
self
.
app_configs
.
get
(
app_name
.
rpartition
(
"."
)[
2
])
return
app_config
is
not
None
and
app_config
.
name
==
app_name
return
any
(
ac
.
name
==
app_name
for
ac
in
self
.
app_configs
.
values
())
def
get_containing_app_config
(
self
,
object_name
):
"""
...
...
tests/apps/apps.py
Dosyayı görüntüle @
29ddae74
...
...
@@ -10,6 +10,7 @@ class MyAdmin(AppConfig):
class
MyAuth
(
AppConfig
):
name
=
'django.contrib.auth'
label
=
'myauth'
verbose_name
=
"All your password are belong to us."
...
...
tests/apps/tests.py
Dosyayı görüntüle @
29ddae74
...
...
@@ -109,6 +109,7 @@ class AppsTests(TestCase):
@override_settings
(
INSTALLED_APPS
=
SOME_INSTALLED_APPS
)
def
test_is_installed
(
self
):
self
.
assertTrue
(
apps
.
is_installed
(
'django.contrib.admin'
))
self
.
assertTrue
(
apps
.
is_installed
(
'django.contrib.auth'
))
self
.
assertTrue
(
apps
.
is_installed
(
'django.contrib.staticfiles'
))
self
.
assertFalse
(
apps
.
is_installed
(
'django.contrib.webdesign'
))
...
...
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