您最多选择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