Sha256: 4f024f7c883d7a6f3d978c4299240e08930900705f94ea8c3f6b3b8bc09a1e8c

Contents?: true

Size: 647 Bytes

Versions: 10

Compression:

Stored size: 647 Bytes

Contents

require 'rspec'
require 'video_info'
require 'vcr'

if ENV['CI']
  require 'coveralls'
  Coveralls.wear!
end

VCR.configure do |config|
  config.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
  config.default_cassette_options = {
    record: :new_episodes,
    re_record_interval: 7 * 24 * 60 * 60
  }
  config.hook_into :webmock
  config.configure_rspec_metadata!
end

RSpec.configure do |config|
  config.color_enabled = true
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
video_info-2.3.1 spec/spec_helper.rb
video_info-2.3.0 spec/spec_helper.rb
video_info-2.2.2 spec/spec_helper.rb
video_info-2.2.1 spec/spec_helper.rb
video_info-2.2.0 spec/spec_helper.rb
video_info-2.1.1 spec/spec_helper.rb
video_info-2.1.0 spec/spec_helper.rb
video_info-2.0.2 spec/spec_helper.rb
video_info-2.0.1 spec/spec_helper.rb
video_info-2.0.0 spec/spec_helper.rb