Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
618b7303
Kaydet (Commit)
618b7303
authored
Kas 14, 2011
tarafından
Éric Araujo
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add tests to check initial content of packaging.database caches
üst
e749e219
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
test_database.py
Lib/packaging/tests/test_database.py
+7
-0
No files found.
Lib/packaging/tests/test_database.py
Dosyayı görüntüle @
618b7303
...
...
@@ -10,6 +10,7 @@ from textwrap import dedent
from
packaging.tests.test_util
import
GlobTestCaseBase
from
packaging.tests.support
import
requires_zlib
import
packaging.database
from
packaging.config
import
get_resources_dests
from
packaging.errors
import
PackagingError
from
packaging.metadata
import
Metadata
...
...
@@ -279,6 +280,12 @@ class TestDatabase(support.LoggingCatcher,
sys
.
path
.
insert
(
0
,
self
.
fake_dists_path
)
self
.
addCleanup
(
sys
.
path
.
remove
,
self
.
fake_dists_path
)
def
test_caches
(
self
):
# sanity check for internal caches
for
name
in
(
'_cache_name'
,
'_cache_name_egg'
,
'_cache_path'
,
'_cache_path_egg'
):
self
.
assertEqual
(
getattr
(
packaging
.
database
,
name
),
{})
def
test_distinfo_dirname
(
self
):
# Given a name and a version, we expect the distinfo_dirname function
# to return a standard distribution information directory name.
...
...
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