2016-11-28 12:45:13 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-05-31 14:39:35 -04:00
|
|
|
RSpec.describe Admin::SubscriptionsController, type: :controller do
|
2017-04-28 09:12:37 -04:00
|
|
|
render_views
|
|
|
|
|
2016-11-28 12:45:13 -05:00
|
|
|
describe 'GET #index' do
|
2017-05-29 12:01:37 -04:00
|
|
|
around do |example|
|
|
|
|
default_per_page = Subscription.default_per_page
|
|
|
|
Subscription.paginates_per 1
|
|
|
|
example.run
|
|
|
|
Subscription.paginates_per default_per_page
|
|
|
|
end
|
|
|
|
|
2016-11-28 12:45:13 -05:00
|
|
|
before do
|
2016-11-29 09:49:39 -05:00
|
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
2016-11-28 12:45:13 -05:00
|
|
|
end
|
|
|
|
|
2017-05-29 12:01:37 -04:00
|
|
|
it 'renders subscriptions' do
|
|
|
|
Fabricate(:subscription)
|
|
|
|
specified = Fabricate(:subscription)
|
|
|
|
|
2016-11-28 12:45:13 -05:00
|
|
|
get :index
|
2017-05-29 12:01:37 -04:00
|
|
|
|
|
|
|
subscriptions = assigns(:subscriptions)
|
|
|
|
expect(subscriptions.count).to eq 1
|
|
|
|
expect(subscriptions[0]).to eq specified
|
|
|
|
|
2016-11-28 12:45:13 -05:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|