2016-11-29 04:45:13 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-06-01 04:39:35 +10:00
|
|
|
RSpec.describe Admin::SubscriptionsController, type: :controller do
|
2017-04-28 23:12:37 +10:00
|
|
|
render_views
|
|
|
|
|
2016-11-29 04:45:13 +11:00
|
|
|
describe 'GET #index' do
|
2017-05-30 02:01:37 +10: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-29 04:45:13 +11:00
|
|
|
before do
|
2016-11-30 01:49:39 +11:00
|
|
|
sign_in Fabricate(:user, admin: true), scope: :user
|
2016-11-29 04:45:13 +11:00
|
|
|
end
|
|
|
|
|
2017-05-30 02:01:37 +10:00
|
|
|
it 'renders subscriptions' do
|
|
|
|
Fabricate(:subscription)
|
|
|
|
specified = Fabricate(:subscription)
|
|
|
|
|
2016-11-29 04:45:13 +11:00
|
|
|
get :index
|
2017-05-30 02:01:37 +10:00
|
|
|
|
|
|
|
subscriptions = assigns(:subscriptions)
|
|
|
|
expect(subscriptions.count).to eq 1
|
|
|
|
expect(subscriptions[0]).to eq specified
|
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2016-11-29 04:45:13 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|