mastodon/spec/controllers/api/v1/favourites_controller_spec.rb

22 lines
515 B
Ruby
Raw Normal View History

2016-12-29 20:33:26 +01:00
require 'rails_helper'
RSpec.describe Api::V1::FavouritesController, type: :controller do
render_views
let(:user) { Fabricate(:user) }
2016-12-29 20:33:26 +01:00
let(:token) { double acceptable?: true, resource_owner_id: user.id }
before do
Fabricate(:favourite, account: user.account)
2016-12-29 20:33:26 +01:00
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #index' do
it 'returns http success' do
get :index, params: { limit: 1 }
2016-12-29 20:33:26 +01:00
expect(response).to have_http_status(:success)
end
end
end