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
d3dbba41
Kaydet (Commit)
d3dbba41
authored
Eki 04, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28222: Merge from 3.5
üst
5cb63ae3
b5bb404c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
test_check.py
Lib/distutils/tests/test_check.py
+14
-2
No files found.
Lib/distutils/tests/test_check.py
Dosyayı görüntüle @
d3dbba41
...
...
@@ -7,6 +7,12 @@ from distutils.command.check import check, HAS_DOCUTILS
from
distutils.tests
import
support
from
distutils.errors
import
DistutilsSetupError
try
:
import
pygments
except
ImportError
:
pygments
=
None
class
CheckTestCase
(
support
.
LoggingSilencer
,
support
.
TempdirManager
,
unittest
.
TestCase
):
...
...
@@ -119,9 +125,15 @@ class CheckTestCase(support.LoggingSilencer,
pkg_info
,
dist
=
self
.
create_dist
(
long_description
=
rest_with_code
)
cmd
=
check
(
dist
)
cmd
.
check_restructuredtext
()
self
.
assertEqual
(
cmd
.
_warnings
,
0
)
msgs
=
cmd
.
_check_rst_data
(
rest_with_code
)
self
.
assertEqual
(
len
(
msgs
),
0
)
if
pygments
is
not
None
:
self
.
assertEqual
(
len
(
msgs
),
0
)
else
:
self
.
assertEqual
(
len
(
msgs
),
1
)
self
.
assertEqual
(
str
(
msgs
[
0
][
1
]),
'Cannot analyze code. Pygments package not found.'
)
def
test_check_all
(
self
):
...
...
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