Introduce OStatus::TagManager (#5008)
This commit is contained in:
committed by
Eugen Rochko
parent
df1ce2350c
commit
bb4d005a83
@ -34,7 +34,7 @@ RSpec.describe RemoveStatusService do
|
||||
|
||||
it 'sends PuSH update to PuSH subscribers' do
|
||||
expect(a_request(:post, 'http://example.com/push').with { |req|
|
||||
req.body.match(TagManager::VERBS[:delete])
|
||||
req.body.match(OStatus::TagManager::VERBS[:delete])
|
||||
}).to have_been_made
|
||||
end
|
||||
|
||||
@ -45,7 +45,7 @@ RSpec.describe RemoveStatusService do
|
||||
it 'sends Salmon slap to previously mentioned users' do
|
||||
expect(a_request(:post, "http://example.com/salmon").with { |req|
|
||||
xml = OStatus2::Salmon.new.unpack(req.body)
|
||||
xml.match(TagManager::VERBS[:delete])
|
||||
xml.match(OStatus::TagManager::VERBS[:delete])
|
||||
}).to have_been_made.once
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user