Commit 147879ae authored by Felipe Artur's avatar Felipe Artur

Fix specs

parent e8a77c0a
......@@ -156,6 +156,7 @@ class Ability
rules -= project_archived_rules
end
rules << :read_project_members
rules - project_disabled_features_rules(project)
end
end
......@@ -177,8 +178,7 @@ class Ability
@public_project_rules ||= project_guest_rules + [
:download_code,
:fork_project,
:read_commit_status,
:read_project_members
:read_commit_status
]
end
......
......@@ -30,10 +30,12 @@ describe UsersController do
end
describe 'when logged out' do
before { stub_application_setting(restricted_visibility_levels: []) }
it 'renders the show template' do
get :show, username: user.username
expect(response).to be_success
expect(response.status).to eq(200)
expect(response).to render_template('show')
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment