instiki/vendor/plugins/bundler/gems/bundler-1.0.15/spec/other/config_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

41 lines
1.1 KiB
Ruby

require "spec_helper"
describe ".bundle/config" do
before :each do
gemfile <<-G
source "file://#{gem_repo1}"
gem "rack", "1.0.0"
G
end
it "can be moved with an environment variable" do
ENV['BUNDLE_APP_CONFIG'] = tmp('foo/bar').to_s
bundle "install --path vendor/bundle"
bundled_app('.bundle').should_not exist
tmp('foo/bar/config').should exist
should_be_installed "rack 1.0.0"
end
it "can provide a relative path with the environment variable" do
FileUtils.mkdir_p bundled_app('omg')
Dir.chdir bundled_app('omg')
ENV['BUNDLE_APP_CONFIG'] = "../foo"
bundle "install --path vendor/bundle"
bundled_app(".bundle").should_not exist
bundled_app("../foo/config").should exist
should_be_installed "rack 1.0.0"
end
it "removes environment.rb from BUNDLE_APP_CONFIG's path" do
FileUtils.mkdir_p(tmp('foo/bar'))
ENV['BUNDLE_APP_CONFIG'] = tmp('foo/bar').to_s
bundle "install"
FileUtils.touch tmp('foo/bar/environment.rb')
should_be_installed "rack 1.0.0"
tmp('foo/bar/environment.rb').should_not exist
end
end