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
0aaed272
Kaydet (Commit)
0aaed272
authored
Eki 23, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added test for regression on SourceForge bug #117490.
üst
de3518e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
test_mailbox
Lib/test/output/test_mailbox
+2
-0
test_mailbox.py
Lib/test/test_mailbox.py
+28
-0
No files found.
Lib/test/output/test_mailbox
0 → 100644
Dosyayı görüntüle @
0aaed272
test_mailbox
newly created maildir contains 0 messages
Lib/test/test_mailbox.py
0 → 100644
Dosyayı görüntüle @
0aaed272
import
mailbox
import
os
import
test_support
# create a new maildir mailbox to work with:
curdir
=
os
.
path
.
join
(
test_support
.
TESTFN
,
"cur"
)
newdir
=
os
.
path
.
join
(
test_support
.
TESTFN
,
"new"
)
try
:
os
.
mkdir
(
test_support
.
TESTFN
)
os
.
mkdir
(
curdir
)
os
.
mkdir
(
newdir
)
# Test for regression on bug #117490:
# http://sourceforge.net/bugs/?func=detailbug&bug_id=117490&group_id=5470
# Make sure the boxes attribute actually gets set.
mbox
=
mailbox
.
Maildir
(
test_support
.
TESTFN
)
mbox
.
boxes
print
"newly created maildir contains"
,
len
(
mbox
.
boxes
),
"messages"
# XXX We still need more tests!
finally
:
try
:
os
.
rmdir
(
newdir
)
except
IOError
:
pass
try
:
os
.
rmdir
(
curdir
)
except
IOError
:
pass
try
:
os
.
rmdir
(
test_support
.
TESTFN
)
except
IOError
:
pass
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