Sha256: 5a549b7ee280672da9473ab6f5d2fe6e45fa6cd303ef27c02666cb88a2ad84df
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
require 'spec_helper' describe Gemline do describe "querying rubygems" do before do stub_rubygems_json_output end it "should be able to parse the version out of a good json string" do g = Gemline.new('rails') expect(g.gemline).to eq(%Q{gem "rails", "~> 3.1.1"}) end it "should whine when the gem you are querying does not exist" do g = Gemline.new('doesnotexist') g.gem_not_found?.should be_true expect(g.gemline).to be_nil end it "should properly detect a blocked gem name" do g = Gemline.new('yaml') expect(g.gem_not_found?).to be_true expect(g.gemline).to be_nil end it "should properly handle funny characters in the returned JSON" do g = Gemline.new('nokogiri') expect(g.gemline).to eq(%Q{gem "nokogiri", "~> 1.5.5"}) end it "should be able to generate a gemspec-style gemline" do g = Gemline.new('rails', :gemspec => true) expect(g.gemline).to eq(%Q!gem.add_dependency(%q<rails>, ["~> 3.1.1"])!) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gemline-0.2.0 | spec/gemline_spec.rb |
gemline-0.1.4 | spec/gemline_spec.rb |