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
ab9d8d64
Kaydet (Commit)
ab9d8d64
authored
Ara 27, 2010
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Escape file path before searching for it in output via regex
üst
7d101293
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
test_site.py
Lib/test/test_site.py
+7
-3
No files found.
Lib/test/test_site.py
Dosyayı görüntüle @
ab9d8d64
...
...
@@ -10,6 +10,7 @@ from test.support import captured_stderr
import
builtins
import
os
import
sys
import
re
import
encodings
import
subprocess
import
sysconfig
...
...
@@ -108,7 +109,8 @@ class HelperFunctionsTests(unittest.TestCase):
with
captured_stderr
()
as
err_out
:
site
.
addpackage
(
pth_dir
,
pth_fn
,
set
())
self
.
assertRegex
(
err_out
.
getvalue
(),
"line 1"
)
self
.
assertRegex
(
err_out
.
getvalue
(),
os
.
path
.
join
(
pth_dir
,
pth_fn
))
self
.
assertRegex
(
err_out
.
getvalue
(),
re
.
escape
(
os
.
path
.
join
(
pth_dir
,
pth_fn
)))
# XXX: the previous two should be independent checks so that the
# order doesn't matter. The next three could be a single check
# but my regex foo isn't good enough to write it.
...
...
@@ -122,7 +124,8 @@ class HelperFunctionsTests(unittest.TestCase):
with
captured_stderr
()
as
err_out
:
site
.
addpackage
(
pth_dir
,
pth_fn
,
set
())
self
.
assertRegex
(
err_out
.
getvalue
(),
"line 2"
)
self
.
assertRegex
(
err_out
.
getvalue
(),
os
.
path
.
join
(
pth_dir
,
pth_fn
))
self
.
assertRegex
(
err_out
.
getvalue
(),
re
.
escape
(
os
.
path
.
join
(
pth_dir
,
pth_fn
)))
# XXX: ditto previous XXX comment.
self
.
assertRegex
(
err_out
.
getvalue
(),
'Traceback'
)
self
.
assertRegex
(
err_out
.
getvalue
(),
'ImportError'
)
...
...
@@ -133,7 +136,8 @@ class HelperFunctionsTests(unittest.TestCase):
with
captured_stderr
()
as
err_out
:
site
.
addpackage
(
pth_dir
,
pth_fn
,
set
())
self
.
assertRegex
(
err_out
.
getvalue
(),
"line 1"
)
self
.
assertRegex
(
err_out
.
getvalue
(),
os
.
path
.
join
(
pth_dir
,
pth_fn
))
self
.
assertRegex
(
err_out
.
getvalue
(),
re
.
escape
(
os
.
path
.
join
(
pth_dir
,
pth_fn
)))
# XXX: ditto previous XXX comment.
self
.
assertRegex
(
err_out
.
getvalue
(),
'Traceback'
)
self
.
assertRegex
(
err_out
.
getvalue
(),
'TypeError'
)
...
...
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