diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-26 19:13:56 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-26 19:13:56 +0100 |
commit | 7376af90f79b1de0c4cdd294f3f4d1481eedf0d7 (patch) | |
tree | f3c038fae202b59b50613b4f94899ad0b3291a74 /spec/controllers | |
parent | 3282448878dd2640ea47dc1a77a4ae958ba8923e (diff) |
Don't show statuses to blocked users
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/api/v1/statuses_controller_spec.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/controllers/api/v1/statuses_controller_spec.rb b/spec/controllers/api/v1/statuses_controller_spec.rb index ab918fe50..d9c73f952 100644 --- a/spec/controllers/api/v1/statuses_controller_spec.rb +++ b/spec/controllers/api/v1/statuses_controller_spec.rb @@ -7,7 +7,6 @@ RSpec.describe Api::V1::StatusesController, type: :controller do let(:token) { double acceptable?: true, resource_owner_id: user.id } before do - stub_request(:post, "https://pubsubhubbub.superfeedr.com/").to_return(:status => 200, :body => "", :headers => {}) allow(controller).to receive(:doorkeeper_token) { token } end |