Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8d5c42bb
Commit
8d5c42bb
authored
Sep 14, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#18856: improve test coverage of the calendar module. Patch by Madison May.
parent
a2f3c8d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
Lib/test/test_calendar.py
Lib/test/test_calendar.py
+21
-0
No files found.
Lib/test/test_calendar.py
View file @
8d5c42bb
...
...
@@ -399,6 +399,27 @@ class OutputTestCase(unittest.TestCase):
'<tr><th colspan="7" class="month">January</th></tr>'
)
def
test_prweek
(
self
):
with
support
.
captured_stdout
()
as
out
:
week
=
[(
1
,
0
),
(
2
,
1
),
(
3
,
2
),
(
4
,
3
),
(
5
,
4
),
(
6
,
5
),
(
7
,
6
)]
calendar
.
TextCalendar
().
prweek
(
week
,
1
)
self
.
assertEqual
(
out
.
getvalue
().
strip
(),
"1 2 3 4 5 6 7"
)
def
test_prmonth
(
self
):
with
support
.
captured_stdout
()
as
out
:
calendar
.
TextCalendar
().
prmonth
(
2004
,
1
)
output
=
out
.
getvalue
().
strip
()
self
.
assertEqual
(
output
,
result_2004_01_text
.
strip
())
def
test_pryear
(
self
):
with
support
.
captured_stdout
()
as
out
:
calendar
.
TextCalendar
().
pryear
(
2004
)
self
.
assertEqual
(
out
.
getvalue
().
strip
(),
result_2004_text
.
strip
())
def
test_format
(
self
):
with
support
.
captured_stdout
()
as
out
:
calendar
.
format
([
"1"
,
"2"
,
"3"
],
colwidth
=
3
,
spacing
=
1
)
self
.
assertEqual
(
out
.
getvalue
().
strip
(),
"1 2 3"
)
class
CalendarTestCase
(
unittest
.
TestCase
):
def
test_isleap
(
self
):
...
...
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