Sha256: 14c18aab63ef240ad70d590c19096f758277bc0e46b8d019f3ca377466efb561
Contents?: true
Size: 1.42 KB
Versions: 7
Compression:
Stored size: 1.42 KB
Contents
require 'spec_helper' describe StatRaptor::Client do before do @keys = StatRaptor::Config::VALID_OPTIONS_KEYS end context "with module configuration" do before do StatRaptor.configure do |config| @keys.each do |key| config.send("#{key}=", key) end end end after do StatRaptor.reset end it "should inherit module configuration" do client = StatRaptor::Client.new @keys.each do |key| client.send(key).should == key end end end context "with class configuration" do before do @configuration = { :endpoint => "http://example.com", :timeout => 300, :platform_credentials => "ABC12345", :user_agent => "Fu Manchu Ruby Gem 2.0.0", :disable_ssl_peer_verification => true } end context "during initialization" do it "should override module configuration" do client = StatRaptor::Client.new(@configuration) @keys.each do |key| client.send(key).should == @configuration[key] end end end context "after initialization" do it "should override module configuration" do client = StatRaptor::Client.new @configuration.each do |key, value| client.send("#{key}=", value) end @keys.each do |key| client.send(key).should == @configuration[key] end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems