Commit 9f7d75fd authored by Stan Hu's avatar Stan Hu

Merge branch...

Merge branch '53467-transient-failure-in-spec-controllers-groups-boards_controller_spec-rb' into 'master'

Resolve "Transient failure in spec/controllers/groups/boards_controller_spec.rb"

Closes #53467

See merge request gitlab-org/gitlab-ce!22785
parents 4d3ff28a 13dbfa90
......@@ -32,12 +32,13 @@ describe Groups::BoardsController do
end
it 'renders template if visited board is not found' do
visited = double
temporary_board = create(:board, group: group)
visited = create(:board_group_recent_visit, group: temporary_board.group, board: temporary_board, user: user)
temporary_board.delete
allow(visited).to receive(:board_id).and_return(12)
allow_any_instance_of(Boards::Visits::LatestService).to receive(:execute).and_return(visited)
list_boards format: :html
list_boards
expect(response).to render_template :index
expect(response.content_type).to eq 'text/html'
......
......@@ -38,9 +38,10 @@ describe Projects::BoardsController do
end
it 'renders template if visited board is not found' do
visited = double
temporary_board = create(:board, project: project)
visited = create(:board_project_recent_visit, project: temporary_board.project, board: temporary_board, user: user)
temporary_board.delete
allow(visited).to receive(:board_id).and_return(12)
allow_any_instance_of(Boards::Visits::LatestService).to receive(:execute).and_return(visited)
list_boards
......
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