Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xml_marshaller
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
nexedi
xml_marshaller
Commits
c47c8831
Commit
c47c8831
authored
Jul 20, 2010
by
Nicolas Delaby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Activate verbosity for assertions
parent
20736bda
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
xml_marshaller/xml_marshaller.py
xml_marshaller/xml_marshaller.py
+3
-1
No files found.
xml_marshaller/xml_marshaller.py
View file @
c47c8831
...
...
@@ -622,7 +622,9 @@ def test(load, loads, dump, dumps, test_values,
file
.
seek
(
0
)
output2
=
load
(
file
)
if
do_assert
:
assert
item
==
output
and
item
==
output2
and
output
==
output2
assert
item
==
output
,
'%r %r'
%
(
item
,
output
)
assert
item
==
output2
,
'%r %r'
%
(
item
,
output2
)
assert
output
==
output2
,
'%r %r'
%
(
output
,
output2
)
# Classes used in the test suite
...
...
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