Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
add-trailing-comma
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
add-trailing-comma
Commits
5a6c157f
Kaydet (Commit)
5a6c157f
authored
Haz 03, 2019
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tiny cleanup
üst
00d404e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
add_trailing_comma_test.py
tests/add_trailing_comma_test.py
+4
-8
No files found.
tests/add_trailing_comma_test.py
Dosyayı görüntüle @
5a6c157f
...
...
@@ -916,20 +916,16 @@ def test_main_py36_plus_function_trailing_commas(
def
test_main_stdin_no_changes
(
capsys
):
with
mock
.
patch
.
object
(
sys
,
'stdin'
,
io
.
TextIOWrapper
(
io
.
BytesIO
(
b
'x = 5
\n
'
),
'UTF-8'
),
):
stdin
=
io
.
TextIOWrapper
(
io
.
BytesIO
(
b
'x = 5
\n
'
),
'UTF-8'
)
with
mock
.
patch
.
object
(
sys
,
'stdin'
,
stdin
):
assert
main
((
'-'
,))
==
0
out
,
err
=
capsys
.
readouterr
()
assert
out
==
'x = 5
\n
'
def
test_main_stdin_with_changes
(
capsys
):
with
mock
.
patch
.
object
(
sys
,
'stdin'
,
io
.
TextIOWrapper
(
io
.
BytesIO
(
b
'x(
\n
1
\n
)
\n
'
),
'UTF-8'
),
):
stdin
=
io
.
TextIOWrapper
(
io
.
BytesIO
(
b
'x(
\n
1
\n
)
\n
'
),
'UTF-8'
)
with
mock
.
patch
.
object
(
sys
,
'stdin'
,
stdin
):
assert
main
((
'-'
,))
==
1
out
,
err
=
capsys
.
readouterr
()
assert
out
==
'x(
\n
1,
\n
)
\n
'
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