aboutsummaryrefslogtreecommitdiffstats
path: root/spec/install
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-11-05 22:28:12 -0800
committerAndre Arko <andre@arko.net>2014-11-05 22:28:12 -0800
commitd0b43e5c379807670fae2b036303b973e8ff2d9a (patch)
treea42bb3bd90c3c7fc4e31c6872c214144da5716ab /spec/install
parent8078db653f43c8311b7955ab09bb22cc0c5ef4dd (diff)
downloadbundler-d0b43e5c379807670fae2b036303b973e8ff2d9a.tar.gz
THE FUTURE IS NOW
Diffstat (limited to 'spec/install')
-rw-r--r--spec/install/gemfile_spec.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/spec/install/gemfile_spec.rb b/spec/install/gemfile_spec.rb
index 4ebd5f48..267a7f55 100644
--- a/spec/install/gemfile_spec.rb
+++ b/spec/install/gemfile_spec.rb
@@ -41,29 +41,4 @@ describe "bundle install" do
end
end
- context "with future features" do
- context "when source is used with a block" do
- it "reports that sources with a block is not supported" do
- gemfile <<-G
- source 'http://rubygems.example.org' do
- gem 'rack'
- end
- G
-
- bundle :install
- expect(out).to match(/A block was passed to `source`/)
- end
- end
-
- context "when source is used without a block" do
- it "prints no warnings" do
- gemfile <<-G
- source 'http://rubygems.example.org'
- G
-
- bundle :install
- expect(out).not_to match(/A block was passed to `source`/)
- end
- end
- end
end