mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-11 01:53:01 +00:00
17 lines
616 B
Markdown
17 lines
616 B
Markdown
#VCR.py
|
|
|
|
This is a proof-of-concept start at a python version of [Ruby's VCR
|
|
library](https://github.com/myronmarston/vcr).
|
|
|
|
#What it is supposed to do
|
|
Simplify testing by recording all HTTP interactions and saving them to
|
|
"cassette" files, which are just yaml files. Then when you run your tests
|
|
again, they all just hit the text files instead of the internet. This speeds up
|
|
your tests and lets you work offline.
|
|
|
|
#Similar libraries in Python
|
|
Neither of these really implement the API I want, but I have cribbed some code
|
|
from them.
|
|
* https://github.com/bbangert/Dalton
|
|
* https://github.com/storborg/replaylib
|