about summary refs log tree commit diff
path: root/spec/services/reblog_service_spec.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-11 23:37:39 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-12 01:55:33 +0100
commitcd765f26a9610e160ffd347637fca40d7b80164e (patch)
treed3305d28921c9a207bd6a8d8909ed205c1ebfdcc /spec/services/reblog_service_spec.rb
parentff229aa978d774d9ab067f0cbe345ccbe0f5658c (diff)
Upgrade ruby to 2.3.1
Diffstat (limited to 'spec/services/reblog_service_spec.rb')
-rw-r--r--spec/services/reblog_service_spec.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/services/reblog_service_spec.rb b/spec/services/reblog_service_spec.rb
index 25ea35e94..f0a40fe91 100644
--- a/spec/services/reblog_service_spec.rb
+++ b/spec/services/reblog_service_spec.rb
@@ -8,9 +8,7 @@ RSpec.describe ReblogService do
   subject { ReblogService.new }
 
   before do
-    Rails.configuration.x.hub_url = 'http://hub.example.com'
-
-    stub_request(:post, 'http://hub.example.com')
+    stub_request(:post, Rails.configuration.x.hub_url)
     stub_request(:post, 'http://salmon.example.com')
 
     subject.(alice, status)
@@ -21,7 +19,7 @@ RSpec.describe ReblogService do
   end
 
   it 'pings PubSubHubbub hubs' do
-    expect(a_request(:post, 'http://hub.example.com')).to have_been_made
+    expect(a_request(:post, Rails.configuration.x.hub_url)).to have_been_made
   end
 
   it 'sends a Salmon slap for a remote reblog' do