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.
2016-03-12 11:47:22 -08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-10-13 17:28:49 -07:00
|
|
|
RSpec.describe Settings::ProfilesController, type: :controller do
|
2016-03-12 11:47:22 -08:00
|
|
|
|
|
|
|
before do
|
2016-08-17 08:56:23 -07:00
|
|
|
sign_in Fabricate(:user), scope: :user
|
2016-03-12 11:47:22 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET #show" do
|
|
|
|
it "returns http success" do
|
|
|
|
get :show
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|