You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
300 B
17 lines
300 B
9 years ago
|
require 'rails_helper'
|
||
|
|
||
8 years ago
|
RSpec.describe Settings::ProfilesController, type: :controller do
|
||
9 years ago
|
|
||
|
before do
|
||
8 years ago
|
sign_in Fabricate(:user), scope: :user
|
||
9 years ago
|
end
|
||
|
|
||
|
describe "GET #show" do
|
||
|
it "returns http success" do
|
||
|
get :show
|
||
|
expect(response).to have_http_status(:success)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|