Sha256: d7cdd082f1f3af472e9d8c047484fefb84d046edcddc4471deab742aaa2dc0ff
Contents?: true
Size: 522 Bytes
Versions: 6804
Compression:
Stored size: 522 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe Typhoeus::Hydra do let(:base_url) { "localhost:3001" } let(:options) { {} } let(:hydra) { Typhoeus::Hydra.new(options) } describe "#new" do let(:options) { {:pipeling => true} } it "passes options to multi" do expect(Ethon::Multi).to receive(:new).with(options) hydra end end describe "#hydra" do it "returns a hydra" do expect(Typhoeus::Hydra.hydra).to be_a(Typhoeus::Hydra) end end end
Version data entries
6,804 entries across 6,801 versions & 27 rubygems
Version | Path |
---|---|
typhoeus-0.7.1 | spec/typhoeus/hydra_spec.rb |
typhoeus-0.7.0 | spec/typhoeus/hydra_spec.rb |
typhoeus-0.7.0.pre1 | spec/typhoeus/hydra_spec.rb |
typhoeus-0.6.9 | spec/typhoeus/hydra_spec.rb |