Sha256: afed21a459de3bba307aa0c677e8ac2052e9cbda8572d8b3c5f1ed8002ba957d

Contents?: true

Size: 978 Bytes

Versions: 42

Compression:

Stored size: 978 Bytes

Contents

require "spec_helper"

describe "bundle init" do
  it "generates a Gemfile" do
    bundle :init
    bundled_app("Gemfile").should exist
  end

  it "does not change existing Gemfiles" do
    gemfile <<-G
      gem "rails"
    G

    lambda {
      bundle :init
    }.should_not change { File.read(bundled_app("Gemfile")) }
  end

  it "should generate from an existing gemspec" do
    spec_file = tmp.join('test.gemspec')
    File.open(spec_file, 'w') do |file|
      file << <<-S
        Gem::Specification.new do |s|
        s.name = 'test'
        s.add_dependency 'rack', '= 1.0.1'
        s.add_development_dependency 'rspec', '1.2'
        end
      S
    end

    bundle :init, :gemspec => spec_file

    gemfile = bundled_app("Gemfile").read
    gemfile.should =~ /source :gemcutter/
    gemfile.scan(/gem "rack", "= 1.0.1"/).size.should eq(1)
    gemfile.scan(/gem "rspec", "= 1.2"/).size.should eq(1)
    gemfile.scan(/group :development/).size.should eq(1)
  end

end

Version data entries

42 entries across 42 versions & 4 rubygems

Version Path
bundler-1.2.5 spec/other/init_spec.rb
bundler-1.2.4 spec/other/init_spec.rb
bundler-1.2.3 spec/other/init_spec.rb
bundler-1.2.2 spec/other/init_spec.rb
bundler-1.2.1 spec/other/init_spec.rb
bundler-1.2.0 spec/other/init_spec.rb
bundler-1.2.0.rc.2 spec/other/init_spec.rb
bundler-1.2.0.rc spec/other/init_spec.rb
bundler-1.1.5 spec/other/init_spec.rb
bundler-1.2.0.pre.1 spec/other/init_spec.rb
bundler-1.1.4 spec/other/init_spec.rb
rkh-bundler-1.2.0.pre spec/other/init_spec.rb
bundler-1.2.0.pre spec/other/init_spec.rb
bundler-1.1.3 spec/other/init_spec.rb
bundler-1.1.2 spec/other/init_spec.rb
bundler-1.1.1 spec/other/init_spec.rb
bundler-1.1.0 spec/other/init_spec.rb
bundler-1.1.rc.8 spec/other/init_spec.rb
bundler-1.0.22 spec/other/init_spec.rb
bundler-1.1.rc.7 spec/other/init_spec.rb