diff options
author | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:41:25 -0700 |
---|---|---|
committer | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:41:25 -0700 |
commit | 9f376f89bdf80a40914218d64cd9cd61b25f449d (patch) | |
tree | 6205015b49c53a3178573532cfcd10dcd7f2d121 /tests/test_requests_async.py | |
parent | d4aa2de2bb89ca384ad81db731bb99735e1db788 (diff) | |
download | python-requests-9f376f89bdf80a40914218d64cd9cd61b25f449d.tar python-requests-9f376f89bdf80a40914218d64cd9cd61b25f449d.tar.gz |
Imported Upstream version 1.1.0
Diffstat (limited to 'tests/test_requests_async.py')
-rwxr-xr-x | tests/test_requests_async.py | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/tests/test_requests_async.py b/tests/test_requests_async.py deleted file mode 100755 index 3a5a762..0000000 --- a/tests/test_requests_async.py +++ /dev/null @@ -1,67 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -# Path hack. -import sys, os -sys.path.insert(0, os.path.abspath('..')) - -import sys -import unittest - -import select -has_poll = hasattr(select, "poll") - -from requests import async - -sys.path.append('.') -from test_requests import httpbin, RequestsTestSuite, SERVICES - - -class RequestsTestSuiteUsingAsyncApi(RequestsTestSuite): - """Requests async test cases.""" - - def patched(f): - """Automatically send request after creation.""" - - def wrapped(*args, **kwargs): - - request = f(*args, **kwargs) - return async.map([request])[0] - - return wrapped - - # Patched requests.api functions. - global request - request = patched(async.request) - - global delete, get, head, options, patch, post, put - delete = patched(async.delete) - get = patched(async.get) - head = patched(async.head) - options = patched(async.options) - patch = patched(async.patch) - post = patched(async.post) - put = patched(async.put) - - - def test_entry_points(self): - - async.request - - async.delete - async.get - async.head - async.options - async.patch - async.post - async.put - - async.map - async.send - - def test_select_poll(self): - """Test to make sure we don't overwrite the poll""" - self.assertEqual(hasattr(select, "poll"), has_poll) - -if __name__ == '__main__': - unittest.main() |