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
a7c9ddb5
Commit
a7c9ddb5
authored
May 28, 2012
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regularize test_email/test_headerregistry's references to policy.
parent
d41595b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Lib/test/test_email/test_headerregistry.py
Lib/test/test_email/test_headerregistry.py
+6
-6
No files found.
Lib/test/test_email/test_headerregistry.py
View file @
a7c9ddb5
...
@@ -650,14 +650,14 @@ class TestFolding(TestHeaderBase):
...
@@ -650,14 +650,14 @@ class TestFolding(TestHeaderBase):
def
test_short_unstructured
(
self
):
def
test_short_unstructured
(
self
):
h
=
self
.
make_header
(
'subject'
,
'this is a test'
)
h
=
self
.
make_header
(
'subject'
,
'this is a test'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
'subject: this is a test
\
n
'
)
'subject: this is a test
\
n
'
)
def
test_long_unstructured
(
self
):
def
test_long_unstructured
(
self
):
h
=
self
.
make_header
(
'Subject'
,
'This is a long header '
h
=
self
.
make_header
(
'Subject'
,
'This is a long header '
'line that will need to be folded into two lines '
'line that will need to be folded into two lines '
'and will demonstrate basic folding'
)
'and will demonstrate basic folding'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
'Subject: This is a long header line that will '
'Subject: This is a long header line that will '
'need to be folded into two lines
\
n
'
'need to be folded into two lines
\
n
'
' and will demonstrate basic folding
\
n
'
)
' and will demonstrate basic folding
\
n
'
)
...
@@ -676,11 +676,11 @@ class TestFolding(TestHeaderBase):
...
@@ -676,11 +676,11 @@ class TestFolding(TestHeaderBase):
def
test_fold_unstructured_single_word
(
self
):
def
test_fold_unstructured_single_word
(
self
):
h
=
self
.
make_header
(
'Subject'
,
'test'
)
h
=
self
.
make_header
(
'Subject'
,
'test'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
'Subject: test
\
n
'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
'Subject: test
\
n
'
)
def
test_fold_unstructured_short
(
self
):
def
test_fold_unstructured_short
(
self
):
h
=
self
.
make_header
(
'Subject'
,
'test test test'
)
h
=
self
.
make_header
(
'Subject'
,
'test test test'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
'Subject: test test test
\
n
'
)
'Subject: test test test
\
n
'
)
def
test_fold_unstructured_with_overlong_word
(
self
):
def
test_fold_unstructured_with_overlong_word
(
self
):
...
@@ -721,7 +721,7 @@ class TestFolding(TestHeaderBase):
...
@@ -721,7 +721,7 @@ class TestFolding(TestHeaderBase):
h
=
self
.
make_header
(
'To'
,
'"Theodore H. Perfect" <yes@man.com>, '
h
=
self
.
make_header
(
'To'
,
'"Theodore H. Perfect" <yes@man.com>, '
'"My address is very long because my name is long" <foo@bar.com>, '
'"My address is very long because my name is long" <foo@bar.com>, '
'"Only A. Friend" <no@yes.com>'
)
'"Only A. Friend" <no@yes.com>'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
textwrap
.
dedent
(
"""
\
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
textwrap
.
dedent
(
"""
\
To: "Theodore H. Perfect" <yes@man.com>,
To: "Theodore H. Perfect" <yes@man.com>,
"My address is very long because my name is long" <foo@bar.com>,
"My address is very long because my name is long" <foo@bar.com>,
"Only A. Friend" <no@yes.com>
"Only A. Friend" <no@yes.com>
...
@@ -729,7 +729,7 @@ class TestFolding(TestHeaderBase):
...
@@ -729,7 +729,7 @@ class TestFolding(TestHeaderBase):
def
test_fold_date_header
(
self
):
def
test_fold_date_header
(
self
):
h
=
self
.
make_header
(
'Date'
,
'Sat, 2 Feb 2002 17:00:06 -0800'
)
h
=
self
.
make_header
(
'Date'
,
'Sat, 2 Feb 2002 17:00:06 -0800'
)
self
.
assertEqual
(
h
.
fold
(
policy
=
self
.
policy
),
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
'Date: Sat, 02 Feb 2002 17:00:06 -0800
\
n
'
)
'Date: Sat, 02 Feb 2002 17:00:06 -0800
\
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