Sha256: 1dc4443e7a40136f037bca38093b22d8b41570c8cf8fba6fbbaccce8b4867dc0

Contents?: true

Size: 993 Bytes

Versions: 13

Compression:

Stored size: 993 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/
    check gemfile.scan(/gem "rack", "= 1.0.1"/).size.should == 1
    check gemfile.scan(/gem "rspec", "= 1.2"/).size.should == 1
    check gemfile.scan(/group :development/).size.should == 1
  end

end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
bundler-1.1.pre.4 spec/other/init_spec.rb
bundler-1.0.13 spec/other/init_spec.rb
bundler-1.1.pre.3 spec/other/init_spec.rb
bundler-1.1.pre.2 spec/other/init_spec.rb
bundler-1.0.12 spec/other/init_spec.rb
bundler-1.0.11 spec/other/init_spec.rb
bundler_package_git-1.1.pre.1 spec/other/init_spec.rb
bundler-1.1.pre.1 spec/other/init_spec.rb
bundler-1.0.10 spec/other/init_spec.rb
bundler-1.1.pre spec/other/init_spec.rb
bundler-1.0.9 spec/other/init_spec.rb
bundler-1.0.7 spec/other/init_spec.rb
bundler-1.0.5 spec/other/init_spec.rb