Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
20f6d7b7
Commit
20f6d7b7
authored
Jan 03, 2012
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test__ares_host_result.py with test for issue 104
parent
bd436751
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
greentest/test__ares_host_result.py
greentest/test__ares_host_result.py
+27
-0
No files found.
greentest/test__ares_host_result.py
0 → 100644
View file @
20f6d7b7
import
pickle
import
unittest
from
gevent.ares
import
ares_host_result
class
TestPickle
(
unittest
.
TestCase
):
# Issue 104: ares.ares_host_result unpickleable
def
_test
(
self
,
protocol
):
r
=
ares_host_result
(
'family'
,
(
'arg1'
,
'arg2'
,
))
dumped
=
pickle
.
dumps
(
r
,
protocol
)
loaded
=
pickle
.
loads
(
dumped
)
assert
r
==
loaded
,
(
r
,
loaded
)
assert
r
.
family
==
loaded
.
family
,
(
r
,
loaded
)
def
test0
(
self
):
return
self
.
_test
(
0
)
def
test1
(
self
):
return
self
.
_test
(
1
)
def
test2
(
self
):
return
self
.
_test
(
2
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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