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
0fb37ea3
Kaydet (Commit)
0fb37ea3
authored
Mar 12, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#17066: test_robotparser now works with unittest test discovery. Patch by Zachary Ware.
üst
0f84764a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
test_robotparser.py
Lib/test/test_robotparser.py
+10
-6
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_robotparser.py
Dosyayı görüntüle @
0fb37ea3
...
...
@@ -6,7 +6,10 @@ from urllib.request import urlopen
from
test
import
support
class
RobotTestCase
(
unittest
.
TestCase
):
def
__init__
(
self
,
index
,
parser
,
url
,
good
,
agent
):
def
__init__
(
self
,
index
=
None
,
parser
=
None
,
url
=
None
,
good
=
None
,
agent
=
None
):
# workaround to make unittest discovery work (see #17066)
if
not
isinstance
(
index
,
int
):
return
unittest
.
TestCase
.
__init__
(
self
)
if
good
:
self
.
str
=
"RobotTest(
%
d, good,
%
s)"
%
(
index
,
url
)
...
...
@@ -269,10 +272,11 @@ class NetworkTestCase(unittest.TestCase):
self
.
assertTrue
(
parser
.
can_fetch
(
"*"
,
"http://www.python.org/robots.txt"
))
def
test_main
():
support
.
run_unittest
(
NetworkTestCase
)
support
.
run_unittest
(
tests
)
def
load_tests
(
loader
,
suite
,
pattern
):
suite
=
unittest
.
makeSuite
(
NetworkTestCase
)
suite
.
addTest
(
tests
)
return
suite
if
__name__
==
'__main__'
:
support
.
verbose
=
1
test_
main
()
support
.
use_resources
=
[
'network'
]
unittest
.
main
()
Misc/NEWS
Dosyayı görüntüle @
0fb37ea3
...
...
@@ -662,6 +662,9 @@ Tests
- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
- Issue #17066: test_robotparser now works with unittest test discovery.
Patch by Zachary Ware.
- Issue #17334: test_index now works with unittest test discovery.
Patch by Zachary Ware.
...
...
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