Sha256: 6764cf3ff445a6bfbd5c017beb97f78f769f3ecbcad5c6f79d45aa4a8d9abb04

Contents?: true

Size: 775 Bytes

Versions: 6

Compression:

Stored size: 775 Bytes

Contents

# -*- encoding: utf-8 -*-

require "spec_helper"

describe MusicBrainz::Deprecated::ProxyConfig do
  before(:all) {
    @old_query_interval = MusicBrainz.config.query_interval
  }

  before(:each) {
    MusicBrainz.config.query_interval = nil
  }

  after(:all) {
    MusicBrainz.config.query_interval = @old_query_interval
  }

  it "allows deprecated use of query_interval" do
    MusicBrainz.config.query_interval = 2

    MusicBrainz::Tools::Proxy.query_interval.should == 2
    MusicBrainz.query_interval.should == 2
  end

  it "allows deprecated use of query_interval=" do
    MusicBrainz::Tools::Proxy.query_interval = 3
    MusicBrainz.config.query_interval.should == 3

    MusicBrainz.query_interval = 4
    MusicBrainz.config.query_interval.should == 4
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
musicbrainz-0.7.7 spec/deprecated/proxy_config_spec.rb
musicbrainz-0.7.6 spec/deprecated/proxy_config_spec.rb
musicbrainz-0.7.5 spec/deprecated/proxy_config_spec.rb
musicbrainz-0.7.4 spec/deprecated/proxy_config_spec.rb
musicbrainz-0.7.3 spec/deprecated/proxy_config_spec.rb
musicbrainz-0.7.2 spec/deprecated/proxy_config_spec.rb