Fix 500 errors on searching invalid URLs (#3613)

lolsob-rspec
unarist 2017-06-06 23:44:48 +09:00 committed by Eugen Rochko
parent 117d333a84
commit 5ef958b99f
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ class FetchRemoteResourceService < BaseService
def call(url)
@url = url
process_url unless atom_url.nil?
process_url unless fetched_atom_feed.nil?
end
private

View File

@ -10,7 +10,7 @@ describe FetchRemoteResourceService do
url = 'http://example.com/missing-atom'
service = double
allow(FetchAtomService).to receive(:new).and_return service
allow(service).to receive(:call).with(url).and_return([nil, 'body'])
allow(service).to receive(:call).with(url).and_return(nil)
result = subject.call(url)
expect(result).to be_nil