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
837c7dc1
Unverified
Kaydet (Commit)
837c7dc1
authored
Ara 25, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Ara 25, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35578: Add an example file for testing Argument Clinic converters. (GH-11306)
üst
95327bc8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
clinic.test
Lib/test/clinic.test
+0
-0
test_clinic.py
Lib/test/test_clinic.py
+17
-1
No files found.
Lib/test/clinic.test
0 → 100644
Dosyayı görüntüle @
837c7dc1
This diff is collapsed.
Click to expand it.
Lib/test/test_clinic.py
Dosyayı görüntüle @
837c7dc1
...
...
@@ -44,7 +44,6 @@ class FakeConvertersDict:
def
get
(
self
,
name
,
default
):
return
self
.
used_converters
.
setdefault
(
name
,
FakeConverterFactory
(
name
))
clinic
.
Clinic
.
presets_text
=
''
c
=
clinic
.
Clinic
(
language
=
'C'
,
filename
=
"file"
)
class
FakeClinic
:
...
...
@@ -798,5 +797,22 @@ Not at column 0!
self
.
assertEqual
(
stdout
.
getvalue
(),
'Error in file "clown.txt" on line 69:
\n
The igloos are melting!
\n
'
)
class
ClinicExternalTest
(
TestCase
):
maxDiff
=
None
def
test_external
(
self
):
source
=
support
.
findfile
(
'clinic.test'
)
with
open
(
source
,
'r'
,
encoding
=
'utf-8'
)
as
f
:
original
=
f
.
read
()
with
support
.
temp_dir
()
as
testdir
:
testfile
=
os
.
path
.
join
(
testdir
,
'clinic.test.c'
)
with
open
(
testfile
,
'w'
,
encoding
=
'utf-8'
)
as
f
:
f
.
write
(
original
)
clinic
.
parse_file
(
testfile
,
force
=
True
)
with
open
(
testfile
,
'r'
,
encoding
=
'utf-8'
)
as
f
:
result
=
f
.
read
()
self
.
assertEqual
(
result
,
original
)
if
__name__
==
"__main__"
:
unittest
.
main
()
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