選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

spec_helper.rb 257B

123456789101112
  1. require 'vcr'
  2. require "webmock/rspec"
  3. ENV["DB_DATABASE"] = ENV["DB_DATABASE"] + '_test'
  4. WebMock.disable_net_connect!(allow_localhost: true)
  5. VCR.configure do |c|
  6. c.cassette_library_dir = "spec/vcr"
  7. c.hook_into :webmock
  8. c.ignore_localhost = true
  9. end