1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

docs/usage.rst: Adapt documentation to new code location

This commit is contained in:
Sebastian Pipping
2023-06-02 16:50:28 +02:00
parent bf30d9a5e5
commit cbb540029f

View File

@@ -97,7 +97,7 @@ interactions.
.. code:: python .. code:: python
from vcr_unittest import VCRTestCase from vcr.unittest import VCRTestCase
import requests import requests
class MyTestCase(VCRTestCase): class MyTestCase(VCRTestCase):
@@ -132,7 +132,7 @@ you can hook on ``_get_vcr``, for example:
See See
`the source `the source
<https://github.com/agriffis/vcrpy-unittest/blob/master/vcr_unittest/testcase.py>`__ <https://github.com/kevin1024/vcrpy/blob/master/vcr/unittest/testcase.py>`__
for the default implementations of these methods, and `VCR.py`_ for more for the default implementations of these methods, and `VCR.py`_ for more
information. information.
@@ -147,7 +147,7 @@ instead.
.. code:: python .. code:: python
from vcr_unittest import VCRMixin from vcr.unittest import VCRMixin
import requests import requests
import unittest import unittest