aboutsummaryrefslogtreecommitdiffstats
path: root/spec/runtime/load_spec.rb
diff options
context:
space:
mode:
authorSamuel E. Giddins <segiddins@segiddins.me>2015-07-15 20:52:48 -0700
committerSamuel E. Giddins <segiddins@segiddins.me>2015-07-15 20:52:48 -0700
commita77ca278809d7f31fa51e4b821faed86324c8275 (patch)
treeda1c6c68b24fdcab9acfc07b6a352a39af1c6f4e /spec/runtime/load_spec.rb
parentaf694073229af89af205d24ff449f51f74316a37 (diff)
downloadbundler-a77ca278809d7f31fa51e4b821faed86324c8275.tar.gz
[RuboCop] Enable Style/StringLiterals
Diffstat (limited to 'spec/runtime/load_spec.rb')
-rw-r--r--spec/runtime/load_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/runtime/load_spec.rb b/spec/runtime/load_spec.rb
index de4bd926..1ba79adc 100644
--- a/spec/runtime/load_spec.rb
+++ b/spec/runtime/load_spec.rb
@@ -30,7 +30,7 @@ describe "Bundler.load" do
it "ignores blank BUNDLE_GEMFILEs" do
expect {
- ENV['BUNDLE_GEMFILE'] = ""
+ ENV["BUNDLE_GEMFILE"] = ""
Bundler.load
}.not_to raise_error()
end
@@ -62,7 +62,7 @@ describe "Bundler.load" do
it "raises an exception if a specified gemfile is not found" do
expect {
- ENV['BUNDLE_GEMFILE'] = "omg.rb"
+ ENV["BUNDLE_GEMFILE"] = "omg.rb"
Bundler.load
}.to raise_error(Bundler::GemfileNotFound, /omg\.rb/)
end