Sha256: 1e808bcc71c7e53eac4244558bbcfb07e01a0ca2afe773ba7424c1f6fd8f04ea

Contents?: true

Size: 347 Bytes

Versions: 5

Compression:

Stored size: 347 Bytes

Contents

require 'spec_helper'

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

  [:block_connection, :memoize, :verbose, :cache, :user_agent].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

5 entries across 5 versions & 2 rubygems

Version Path
typhoeus-1.0.2 spec/typhoeus/config_spec.rb
typhoeus-1.0.1 spec/typhoeus/config_spec.rb
typhoeus-1.0.0 spec/typhoeus/config_spec.rb
dwolla_swagger-1.0.6 vendor/bundle/ruby/2.2.0/gems/typhoeus-0.8.0/spec/typhoeus/config_spec.rb
typhoeus-0.8.0 spec/typhoeus/config_spec.rb