summaryrefslogtreecommitdiff
path: root/spec/install/gems/env_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/install/gems/env_spec.rb')
-rw-r--r--spec/install/gems/env_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/install/gems/env_spec.rb b/spec/install/gems/env_spec.rb
index 3168dc795b..d7d3a3230e 100644
--- a/spec/install/gems/env_spec.rb
+++ b/spec/install/gems/env_spec.rb
@@ -15,13 +15,13 @@ describe "bundle install with ENV conditionals" do
it "excludes the gems when the ENV variable is not set" do
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "includes the gems when the ENV variable is set" do
ENV["BUNDLER_TEST"] = "1"
bundle :install
- expect(the_bundle).to have_installed "rack 1.0"
+ expect(the_bundle).to include_gems "rack 1.0"
end
end
@@ -38,13 +38,13 @@ describe "bundle install with ENV conditionals" do
it "excludes the gems when the ENV variable is not set" do
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "includes the gems when the ENV variable is set" do
ENV["BUNDLER_TEST"] = "1"
bundle :install
- expect(the_bundle).to have_installed "rack 1.0"
+ expect(the_bundle).to include_gems "rack 1.0"
end
end
@@ -61,19 +61,19 @@ describe "bundle install with ENV conditionals" do
it "excludes the gems when the ENV variable is not set" do
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "excludes the gems when the ENV variable is set but does not match the condition" do
ENV["BUNDLER_TEST"] = "1"
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "includes the gems when the ENV variable is set and matches the condition" do
ENV["BUNDLER_TEST"] = "foo"
bundle :install
- expect(the_bundle).to have_installed "rack 1.0"
+ expect(the_bundle).to include_gems "rack 1.0"
end
end
@@ -90,19 +90,19 @@ describe "bundle install with ENV conditionals" do
it "excludes the gems when the ENV variable is not set" do
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "excludes the gems when the ENV variable is set but does not match the condition" do
ENV["BUNDLER_TEST"] = "fo"
bundle :install
- expect(the_bundle).not_to have_installed "rack"
+ expect(the_bundle).not_to include_gems "rack"
end
it "includes the gems when the ENV variable is set and matches the condition" do
ENV["BUNDLER_TEST"] = "foobar"
bundle :install
- expect(the_bundle).to have_installed "rack 1.0"
+ expect(the_bundle).to include_gems "rack 1.0"
end
end
end