Move the set up of the state described in context to a before block

上级 84afd625
......@@ -40,10 +40,12 @@ describe Projects::Boards::IssuesController do
end
context 'with unauthorized user' do
it 'returns a successful 403 response' do
before do
allow(Ability.abilities).to receive(:allowed?).with(user, :read_project, project).and_return(true)
allow(Ability.abilities).to receive(:allowed?).with(user, :read_issue, project).and_return(false)
end
it 'returns a successful 403 response' do
list_issues user: user, list_id: list2
expect(response).to have_http_status(403)
......
......@@ -33,14 +33,18 @@ describe Projects::Boards::ListsController do
expect(parsed_response.length).to eq 3
end
it 'returns a successful 403 response with unauthorized user' do
context 'with unauthorized user' do
before do
allow(Ability.abilities).to receive(:allowed?).with(user, :read_project, project).and_return(true)
allow(Ability.abilities).to receive(:allowed?).with(user, :read_list, project).and_return(false)
end
it 'returns a successful 403 response' do
read_board_list user: user
expect(response).to have_http_status(403)
end
end
def read_board_list(user:)
sign_in(user)
......
......@@ -21,14 +21,18 @@ describe Projects::BoardsController do
expect(response.content_type).to eq 'text/html'
end
it 'returns a successful 404 response with unauthorized user' do
context 'with unauthorized user' do
before do
allow(Ability.abilities).to receive(:allowed?).with(user, :read_project, project).and_return(true)
allow(Ability.abilities).to receive(:allowed?).with(user, :read_board, project).and_return(false)
end
it 'returns a successful 404 response' do
read_board
expect(response).to have_http_status(404)
end
end
def read_board(format: :html)
get :show, namespace_id: project.namespace.to_param,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册