summaryrefslogtreecommitdiff
path: root/httpretty/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* removed non-ascii characters (#321)Tom White2018-03-071-1/+1
|
* New release: 0.8.140.8.14Gabriel Falcão2016-01-181-1/+1
|
* New release: 0.8.13Jiri Kuncar2015-12-141-1/+1
|
* New release: 0.8.12Gabriel Falcão2015-12-141-1/+1
|
* New release: 0.8.11Gabriel Falcão2015-12-131-1/+1
|
* revamping docs + testsGabriel Falcão2015-12-131-1/+28
|
* New release: 0.8.100.8.10Gabriel Falcão2015-05-181-1/+1
|
* New release: 0.8.9Gabriel Falcão2015-05-111-1/+1
|
* add httpretty.has_request() and testjsa2015-05-071-1/+5
|
* New release: 0.8.8Gabriel Falcão2015-03-111-1/+1
|
* New release: 0.8.7Gabriel Falcão2015-03-111-1/+1
|
* New release: 0.8.6Gabriel Falcão2015-03-111-1/+1
|
* New release: 0.8.5Gabriel Falcão2015-02-191-1/+1
|
* New release: 0.8.4Gabriel Falcão2015-02-031-1/+1
|
* Merge pull request #170 from chris-martin/disallow-real-connectionsGabriel Falcão2014-12-111-1/+1
|\ | | | | Allow_net_connect, prevent real connections
| * Allow_net_connect, prevent real connections (#157)Chris Martin2014-05-231-1/+1
| | | | | | | | | | | | | | Users can prevent all real connections by assigning HTTPretty.allow_net_connect = False. When a connection is blocked, UnmockedError is raised instead.
* | New release: 0.8.30.8.3Gabriel Falcao2014-06-191-1/+1
| |
* | New release: 0.8.20.8.2Gabriel Falcao2014-06-191-1/+1
| |
* | New release: 0.8.10.8.1Gabriel Falcao2014-06-191-1/+1
|/
* New release: 0.8.00.8.0Gabriel Falcao2014-02-031-1/+1
|
* New release: 0.7.1Gabriel Falcao2013-11-211-1/+1
|
* Replaced dynamic module attributes with actual references.Simon König2013-10-271-6/+15
|
* New release: 0.7.0Gabriel Falcao2013-10-071-1/+1
|
* reaching 80% of unit test coverageGabriel Falcao2013-10-071-0/+1
|
* teaching HTTPretty how to record requests. refs #10Gabriel Falcao2013-10-011-0/+1
|
* New release: 0.6.5Gabriel Falcao2013-09-301-1/+1
|
* Merge pull request #91 from imankulov/extended_apiGabriel Falcão2013-09-291-1/+1
|\ | | | | Expose httpretty.reset() to public API
| * Expose httpretty.reset() to public APIRoman Imankulov2013-08-191-1/+1
| |
* | New release: 0.6.4Gabriel Falcao2013-09-231-1/+1
| |
* | New release: 0.6.3Gabriel Falcao2013-09-221-1/+1
|/
* release 0.6.20.6.2Gabriel Falcao2013-06-201-1/+1
|
* Merge pull request #59 from maxmind/greg/latest_requestGabriel Falcão2013-06-111-0/+3
|\ | | | | Expose the latest request
| * Add last_request function to httprequest moduleGregory Oschwald2013-05-061-0/+3
| |
* | release 0.6.10.6.1Gabriel Falcao2013-06-041-1/+1
|/
* Fix Python 3 compatibilityRonan Amicel2013-04-251-1/+1
|
* Moving code around, simplifying API interface and releasing 0.6.00.6.0Gabriel Falcao2013-04-181-904/+9
|
* 0.5.140.5.14Gabriel Falcao2013-04-151-4/+4
|
* Merge branch 'url-normalization' of git://github.com/spulec/HTTPretty into ↵Gabriel Falcao2013-04-151-4/+20
|\ | | | | | | spulec-url-normalization
| * fix tests for py26 and py33Steve Pulec2013-03-161-2/+2
| |
| * Normalize urls matching for url quotingSteve Pulec2013-03-161-4/+20
| |
* | Merge pull request #47 from kairichard/masterGabriel Falcão2013-04-151-7/+22
|\ \ | | | | | | Improved Callbacks
| * \ Merge remote-tracking branch 'upstream/master'Kai Richard Koenig2013-03-251-1/+1
| |\ \
| * | | Fixed an issue were callbacks would override them selfs with strKai Richard Koenig2013-03-201-1/+3
| | | | | | | | | | | | | | | | which breaks any subsequent requests
| * | | Introduced more flexible callbacks.Kai Richard Koenig2013-03-201-7/+20
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Callbacks are now called when the response is about to be written. A callback now takes the actual request as first parameter. And can be any object that is callable. Furthermore the signature of the return value has changed to a tuple returning the status code along with the headers and the body. This allows for more logic in the callbacks. Callbacks and regex url matching now work together because the real request is used for passing the url the callback instead of the Regex
* | | refactor to use getattr mechanism rather than overriding every method ↵Tim Cowlishaw2013-04-111-8/+2
| | | | | | | | | | | | individually
* | | ensure that calls to the 'getsockopt' method on fake sockets are delegated ↵Tim Cowlishaw2013-04-111-0/+3
| | | | | | | | | | | | to the underlying socket
* | | ensure that calls to the 'fileno' method on fake sockets are delegated to ↵Tim Cowlishaw2013-04-111-0/+3
| | | | | | | | | | | | the underlying socket
* | | ensure that calls to the 'setblocking' method on fake sockets are delegated ↵Tim Cowlishaw2013-04-111-0/+2
| | | | | | | | | | | | to the underlying socket
* | | fix headers capitalization on Entry classIgor Sobreira2013-04-021-1/+1
| | |
* | | add missing return to Py3kObjectIgor Sobreira2013-04-021-1/+1
| |/ |/|