summaryrefslogtreecommitdiff
path: root/spec/bundler/fetcher_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/fetcher_spec.rb')
-rw-r--r--spec/bundler/fetcher_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/bundler/fetcher_spec.rb b/spec/bundler/fetcher_spec.rb
index 3c7bef39f2..4df9018d66 100644
--- a/spec/bundler/fetcher_spec.rb
+++ b/spec/bundler/fetcher_spec.rb
@@ -1,5 +1,5 @@
-require 'spec_helper'
-require 'bundler/fetcher'
+require "spec_helper"
+require "bundler/fetcher"
describe Bundler::Fetcher do
subject(:fetcher) { Bundler::Fetcher.new(double("remote", :uri => URI("https://example.com"))) }
@@ -20,14 +20,14 @@ describe Bundler::Fetcher do
describe "include CI information" do
it "from one CI" do
with_env_vars({"JENKINS_URL" => "foo"}) do
- ci_part = fetcher.user_agent.split(' ').find{|x| x.match(/\Aci\//)}
+ ci_part = fetcher.user_agent.split(" ").find{|x| x.match(/\Aci\//)}
expect(ci_part).to match("jenkins")
end
end
it "from many CI" do
with_env_vars({"TRAVIS" => "foo", "CI_NAME" => "my_ci"}) do
- ci_part = fetcher.user_agent.split(' ').find{|x| x.match(/\Aci\//)}
+ ci_part = fetcher.user_agent.split(" ").find{|x| x.match(/\Aci\//)}
expect(ci_part).to match("travis")
expect(ci_part).to match("my_ci")
end