php-vcr / phpunit-testlistener-vcr

Integrates PHPUnit with PHP-VCR.
MIT License
61 stars 50 forks source link

Support JSON cassettes by passing a filename ending in .json #2

Closed MrRio closed 10 years ago

MrRio commented 10 years ago

For example, for JSON do:

    /**
     * @vcr AccountInvoiceRequests.json
     */
    public function testInvoices()
    {
    }

And YAML:

    /**
     * @vcr AccountInvoiceRequests.yaml
     */
    public function testInvoices()
    {
    }
adri commented 10 years ago

Thank you :-)

MrRio commented 10 years ago

More than welcome! Ace library. Brought my unit test times down LOADS.