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
839e5eaf
Kaydet (Commit)
839e5eaf
authored
Nis 14, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #17702: use assertRaises() for the unit test
üst
6d10139d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
test_os.py
Lib/test/test_os.py
+4
-10
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
839e5eaf
...
...
@@ -636,19 +636,13 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
missing
=
'missingkey'
self
.
assertNotIn
(
missing
,
os
.
environ
)
try
:
with
self
.
assertRaises
(
KeyError
)
as
cm
:
os
.
environ
[
missing
]
except
KeyError
as
err
:
self
.
assertIs
(
err
.
args
[
0
],
missing
)
else
:
self
.
fail
(
"KeyError not raised"
)
self
.
assertIs
(
cm
.
exception
.
args
[
0
],
missing
)
try
:
with
self
.
assertRaises
(
KeyError
)
as
cm
:
del
os
.
environ
[
missing
]
except
KeyError
as
err
:
self
.
assertIs
(
err
.
args
[
0
],
missing
)
else
:
self
.
fail
(
"KeyError not raised"
)
self
.
assertIs
(
cm
.
exception
.
args
[
0
],
missing
)
class
WalkTests
(
unittest
.
TestCase
):
"""Tests for os.walk()."""
...
...
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