instiki/vendor/plugins/bundler/gems/bundler-1.0.15/spec/other/init_spec.rb
Jacques Distler 9e909d5be3 Update Rails, rails_xss and Bundler
Update Bundler to 1.0.15.
Update Rails to 2.3.12.
Update rails_xss plugin.

The latter two were the
source of a considerable
amount of grief, as rails_xss
is now MUCH stricter about what
string methods can be used.

Also made it possible to use
rake 0.9.x with Instiki. But
you probably REALLY want to use

 ruby bundle exec rake ...

instead of just saying

 rake ....
2011-06-15 00:43:38 -05:00

40 lines
978 B
Ruby

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