Sha256: 292dfc3026acff327aa0525af4c0fd85d1f70eece28633315b9826257ff63d41

Contents?: true

Size: 334 Bytes

Versions: 11

Compression:

Stored size: 334 Bytes

Contents

require 'spec_helper'

describe Typhoeus::Config do
  let(:config) { Typhoeus::Config }

  [:block_connection, :memoize, :verbose, :cache].each do |name|
    it "responds to #{name}" do
      expect(config).to respond_to(name)
    end

    it "responds to #{name}=" do
      expect(config).to respond_to("#{name}=")
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typhoeus-0.7.3 spec/typhoeus/config_spec.rb
typhoeus-0.7.2 spec/typhoeus/config_spec.rb
typhoeus-0.7.1 spec/typhoeus/config_spec.rb
typhoeus-0.7.0 spec/typhoeus/config_spec.rb
typhoeus-0.7.0.pre1 spec/typhoeus/config_spec.rb
typhoeus-0.6.9 spec/typhoeus/config_spec.rb
typhoeus-0.6.8 spec/typhoeus/config_spec.rb
typhoeus-0.6.7 spec/typhoeus/config_spec.rb
typhoeus-0.6.6 spec/typhoeus/config_spec.rb
typhoeus-0.6.5 spec/typhoeus/config_spec.rb
typhoeus-0.6.4 spec/typhoeus/config_spec.rb