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

PEP8 cleanup and make it actually work.

This commit is contained in:
Kevin McCarthy
2012-05-30 21:03:05 -10:00
parent 431e385ded
commit 4ad6be7787
2 changed files with 21 additions and 23 deletions

View File

@@ -1,8 +1,7 @@
#VCR.py
This is a proof-of-concept start at a python version of [Ruby's VCR
library](https://github.com/myronmarston/vcr). It
doesn't actually work.
library](https://github.com/myronmarston/vcr).
#What it is supposed to do
Simplify testing by recording all HTTP interactions and saving them to
@@ -10,10 +9,6 @@ Simplify testing by recording all HTTP interactions and saving them to
again, they all just hit the text files instead of the internet. This speeds up
your tests and lets you work offline.
#What it actually does
Uses up all your memory
#Similar libraries in Python
Neither of these really implement the API I want, but I have cribbed some code
from them.