Created
May 11, 2015 12:39
-
-
Save mikker/8475b47b7daf605147dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Receipts.VCRCase do | |
| use ExUnit.CaseTemplate | |
| using do | |
| quote do | |
| use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney | |
| end | |
| end | |
| setup_all do | |
| ExVCR.Config.cassette_library_dir("test/fixtures/vcr") | |
| :ok | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment