This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-11 13:00:43 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Settings::ExportsController do
|
2017-04-13 04:02:02 -07:00
|
|
|
render_views
|
|
|
|
|
2017-04-11 13:00:43 -07:00
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user), scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :show
|
2017-04-13 04:02:02 -07:00
|
|
|
|
2017-04-11 13:00:43 -07:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|