Sha256: 5dfac778421477682a201c3299d419a4df0e8fad1d5d166a3f7b9f698a91eb0a
Contents?: true
Size: 442 Bytes
Versions: 10
Compression:
Stored size: 442 Bytes
Contents
# encoding: utf-8 require 'spec_helper' module GemVersionCheck describe Configuration do after do end it "returns github.com as default github_host" do GemVersionCheck.configuration.github_host.should == "github.com" end it "returns specified value if set" do GemVersionCheck.configuration = { :github_host => "test" } GemVersionCheck.configuration.github_host.should == "test" end end end
Version data entries
10 entries across 10 versions & 1 rubygems