Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Paul Graydon
erp5
Commits
5f3fc5f7
Commit
5f3fc5f7
authored
1 year ago
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testLocalizer: py3
parent
e8675578
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testLocalizer.py
...TemplateItem/portal_components/test.erp5.testLocalizer.py
+5
-2
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testLocalizer.py
View file @
5f3fc5f7
...
...
@@ -61,6 +61,7 @@ class TestLocalizer(ERP5TypeTestCase):
self
.
assertNotIn
(
u'This is 1€.'
.
encode
(
'utf-8'
),
self
.
message_catalog
.
_messages
)
self
.
assertIn
(
u'This is 1€.'
,
self
.
message_catalog
.
_messages
)
@
unittest
.
skipIf
(
six
.
PY3
,
"only makes sense for py2"
)
def
test_migrated_non_ascii_msgid
(
self
):
# register str key to simulate existing message that was already
# created by old Localizer.
...
...
@@ -208,8 +209,10 @@ assertEquals("This is 1€.", context.Base_translateString("This is 1€."))
# zope.i18n.translate and sets 'default' to 'message' before passing it to
# MessageCatalog (Localizer.erp5_ui.translate)
self
.
assertEqual
(
message
,
self
.
portal
.
Base_translateString
(
message
))
self
.
assertEqual
(
message
,
self
.
portal
.
Localizer
.
translate
(
'ui'
,
message
).
encode
(
'utf-8'
))
translated
=
self
.
portal
.
Localizer
.
translate
(
'ui'
,
message
)
if
six
.
PY2
:
translated
=
translated
.
encode
(
'utf-8'
)
self
.
assertEqual
(
message
,
translated
)
# default=None, thus 'message' was previously stripped before being set as
# 'default' value (MessageCatalog.gettext)
...
...
This diff is collapsed.
Click to expand it.
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