1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 09:35:34 +00:00

update migration fixtures

This commit is contained in:
Kevin McCarthy
2014-05-03 19:56:15 -10:00
parent a65da12aeb
commit d1a3ab56b1
2 changed files with 15 additions and 12 deletions

View File

@@ -15,14 +15,14 @@
"message": "OK", "message": "OK",
"code": 200 "code": 200
}, },
"headers": [ "headers": {
"Access-Control-Allow-Origin: *\r\n", "Access-Control-Allow-Origin": ["*"],
"Content-Type: application/json\r\n", "Content-Type": ["application/json"],
"Date: Mon, 21 Apr 2014 23:13:40 GMT\r\n", "Date": ["Mon, 21 Apr 2014 23:13:40 GMT"],
"Server: gunicorn/0.17.4\r\n", "Server": ["gunicorn/0.17.4"],
"Content-Length: 32\r\n", "Content-Length": ["32"],
"Connection: keep-alive\r\n" "Connection": ["keep-alive"]
], },
"body": { "body": {
"string": "{\n \"origin\": \"217.122.164.194\"\n}" "string": "{\n \"origin\": \"217.122.164.194\"\n}"
} }

View File

@@ -8,8 +8,11 @@
uri: http://httpbin.org/ip uri: http://httpbin.org/ip
response: response:
body: {string: !!python/unicode "{\n \"origin\": \"217.122.164.194\"\n}"} body: {string: !!python/unicode "{\n \"origin\": \"217.122.164.194\"\n}"}
headers: [!!python/unicode "Access-Control-Allow-Origin: *\r\n", !!python/unicode "Content-Type: headers:
application/json\r\n", !!python/unicode "Date: Mon, 21 Apr 2014 23:06:09 GMT\r\n", Access-Control-Allow-Origin: ['*']
!!python/unicode "Server: gunicorn/0.17.4\r\n", !!python/unicode "Content-Length: Content-Type: [application/json]
32\r\n", !!python/unicode "Connection: keep-alive\r\n"] Date: ['Mon, 21 Apr 2014 23:06:09 GMT']
Server: [gunicorn/0.17.4]
Content-Length: ['32']
Connection: [keep-alive]
status: {code: 200, message: OK} status: {code: 200, message: OK}