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
a74ccea9
Kaydet (Commit)
a74ccea9
authored
Ock 27, 2009
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Initial take on importlib.test.loader_tests.
üst
73662a54
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
8 deletions
+66
-8
NOTES
Lib/importlib/NOTES
+5
-8
loader_tests.py
Lib/importlib/test/loader_tests.py
+61
-0
No files found.
Lib/importlib/NOTES
Dosyayı görüntüle @
a74ccea9
to do
/////
*
Standardized loader tests.
*
Use test.loader_tests
+ Create test.loader_tests.
+ Use
- builtin
- frozen
- extension
-source
+ builtin
+ frozen
+ extension
+ source
* Reorganize support code.
...
...
Lib/importlib/test/loader_tests.py
0 → 100644
Dosyayı görüntüle @
a74ccea9
import
abc
import
unittest
class
LoaderTests
(
unittest
.
TestCase
,
metaclass
=
abc
.
ABCMeta
):
@abc.abstractmethod
def
test_module
(
self
):
"""A module should load without issue.
After the loader returns the module should be in sys.modules.
Attributes to verify:
* __file__
* __loader__
* __name__
* No __path__
"""
pass
@abc.abstractmethod
def
test_package
(
self
):
"""Loading a package should work.
After the loader returns the module should be in sys.modules.
Attributes to verify:
* __file__
* __loader__
* __name__
* __path__
"""
pass
@abc.abstractmethod
def
test_lacking_parent
(
self
):
"""A loader should not be dependent on it's parent package being
imported."""
pass
@abc.abstractmethod
def
test_module_reuse
(
self
):
"""If a module is already in sys.modules, it should be reused."""
pass
@abc.abstractmethod
def
test_state_after_failure
(
self
):
"""If a module is already in sys.modules and a reload fails
(e.g. a SyntaxError), the module should be in the state it was before
the reload began."""
pass
@abc.abstractmethod
def
test_unloadable
(
self
):
"""Test ImportError is raised when the loader is asked to load a module
it can't."""
pass
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