Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
4be82fd1
Commit
4be82fd1
authored
Apr 08, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addressed TODO to rename reader to loader in test_loader.py.
parent
1fd7f3f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
25 deletions
+24
-25
pystache/tests/test_loader.py
+24
-25
No files found.
pystache/tests/test_loader.py
View file @
4be82fd1
# encoding: utf-8
"""
Unit tests of
re
ader.py.
Unit tests of
lo
ader.py.
"""
...
...
@@ -78,8 +78,8 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
Test unicode(): default arguments with str input.
"""
re
ader
=
Loader
()
actual
=
re
ader
.
unicode
(
"foo"
)
lo
ader
=
Loader
()
actual
=
lo
ader
.
unicode
(
"foo"
)
self
.
assertString
(
actual
,
u"foo"
)
...
...
@@ -88,8 +88,8 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
Test unicode(): default arguments with unicode input.
"""
re
ader
=
Loader
()
actual
=
re
ader
.
unicode
(
u"foo"
)
lo
ader
=
Loader
()
actual
=
lo
ader
.
unicode
(
u"foo"
)
self
.
assertString
(
actual
,
u"foo"
)
...
...
@@ -103,8 +103,8 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
s
=
UnicodeSubclass
(
u"foo"
)
re
ader
=
Loader
()
actual
=
re
ader
.
unicode
(
s
)
lo
ader
=
Loader
()
actual
=
lo
ader
.
unicode
(
s
)
self
.
assertString
(
actual
,
u"foo"
)
...
...
@@ -113,32 +113,31 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
Test unicode(): encoding attribute.
"""
# TODO: rename reader to loader everywhere in this module.
reader
=
Loader
()
loader
=
Loader
()
non_ascii
=
u'abcdé'
.
encode
(
'utf-8'
)
self
.
assertRaises
(
UnicodeDecodeError
,
re
ader
.
unicode
,
non_ascii
)
self
.
assertRaises
(
UnicodeDecodeError
,
lo
ader
.
unicode
,
non_ascii
)
def
to_unicode
(
s
,
encoding
=
None
):
if
encoding
is
None
:
encoding
=
'utf-8'
return
unicode
(
s
,
encoding
)
re
ader
.
to_unicode
=
to_unicode
self
.
assertString
(
re
ader
.
unicode
(
non_ascii
),
u"abcdé"
)
lo
ader
.
to_unicode
=
to_unicode
self
.
assertString
(
lo
ader
.
unicode
(
non_ascii
),
u"abcdé"
)
def
test_unicode__encoding_argument
(
self
):
"""
Test unicode(): encoding argument.
"""
re
ader
=
Loader
()
lo
ader
=
Loader
()
non_ascii
=
u'abcdé'
.
encode
(
'utf-8'
)
self
.
assertRaises
(
UnicodeDecodeError
,
re
ader
.
unicode
,
non_ascii
)
self
.
assertRaises
(
UnicodeDecodeError
,
lo
ader
.
unicode
,
non_ascii
)
actual
=
re
ader
.
unicode
(
non_ascii
,
encoding
=
'utf-8'
)
actual
=
lo
ader
.
unicode
(
non_ascii
,
encoding
=
'utf-8'
)
self
.
assertString
(
actual
,
u'abcdé'
)
# TODO: check the read() unit tests.
...
...
@@ -147,9 +146,9 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
Test read().
"""
re
ader
=
Loader
()
lo
ader
=
Loader
()
path
=
self
.
_get_path
(
'ascii.mustache'
)
actual
=
re
ader
.
read
(
path
)
actual
=
lo
ader
.
read
(
path
)
self
.
assertString
(
actual
,
u'ascii: abc'
)
def
test_read__file_encoding__attribute
(
self
):
...
...
@@ -171,25 +170,25 @@ class LoaderTests(unittest.TestCase, AssertStringMixin, SetupDefaults):
Test read(): encoding argument respected.
"""
re
ader
=
Loader
()
lo
ader
=
Loader
()
path
=
self
.
_get_path
(
'non_ascii.mustache'
)
self
.
assertRaises
(
UnicodeDecodeError
,
re
ader
.
read
,
path
)
self
.
assertRaises
(
UnicodeDecodeError
,
lo
ader
.
read
,
path
)
actual
=
re
ader
.
read
(
path
,
encoding
=
'utf-8'
)
actual
=
lo
ader
.
read
(
path
,
encoding
=
'utf-8'
)
self
.
assertString
(
actual
,
u'non-ascii: é'
)
def
test_
re
ader__to_unicode__attribute
(
self
):
def
test_
lo
ader__to_unicode__attribute
(
self
):
"""
Test read(): to_unicode attribute respected.
"""
re
ader
=
Loader
()
lo
ader
=
Loader
()
path
=
self
.
_get_path
(
'non_ascii.mustache'
)
self
.
assertRaises
(
UnicodeDecodeError
,
re
ader
.
read
,
path
)
self
.
assertRaises
(
UnicodeDecodeError
,
lo
ader
.
read
,
path
)
#
re
ader.decode_errors = 'ignore'
#actual =
re
ader.read(path)
#
lo
ader.decode_errors = 'ignore'
#actual =
lo
ader.read(path)
#self.assertString(actual, u'non-ascii: ')
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