Sha256: bbbc349fedad4c36e0c0ff9a50e56ec7e0fe989c760b3f6941e8eb5c4045c084
Contents?: true
Size: 755 Bytes
Versions: 2
Compression:
Stored size: 755 Bytes
Contents
# encoding: utf-8 require 'spec_helper' module GemVersionCheck describe Lockfile do let(:lockfile) { Lockfile.new(lock_file_content("Gemfile.lock")) } describe "#spec_names" do it "returns all spec names" do lockfile.spec_names.size.should == 12 lockfile.spec_names.should include("activesupport") end end describe "#version_for" do it "returns spec for name" do lockfile.version_for("activesupport").should == "3.2.9" end it "returns nil if spec does not exist" do lockfile.version_for("non_existing_gem").should be_nil end end describe "#total" do it "returns total number of spec" do lockfile.total.should == 12 end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gem_version_check-0.0.10 | spec/lockfile_spec.rb |
gem_version_check-0.0.9 | spec/lockfile_spec.rb |