2020-08-21 14:10:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Admin::CohortsController do
|
2021-01-27 10:09:15 -05:00
|
|
|
let(:user) { create(:admin) }
|
2020-08-21 14:10:24 -04:00
|
|
|
|
2021-01-27 10:09:15 -05:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
2020-08-21 14:10:24 -04:00
|
|
|
end
|
|
|
|
|
2021-01-27 10:09:15 -05:00
|
|
|
it 'redirects to Overview->Users' do
|
|
|
|
get :index
|
2020-08-21 14:10:24 -04:00
|
|
|
|
2021-01-27 10:09:15 -05:00
|
|
|
expect(response).to redirect_to(admin_users_path(tab: 'cohorts'))
|
2020-08-21 14:10:24 -04:00
|
|
|
end
|
|
|
|
end
|