Merge branch 'add-specs-for-group-routing-spec' into 'master'
Add specs to group routing spec See merge request gitlab-org/gitlab-ce!27705
This commit is contained in:
commit
e0074780d6
1 changed files with 14 additions and 0 deletions
|
@ -133,5 +133,19 @@ describe "Groups", "routing" do
|
|||
let(:resource) { create(:group, parent: parent, path: 'activity') }
|
||||
end
|
||||
end
|
||||
|
||||
describe 'subgroup "boards"' do
|
||||
it 'shows group show page' do
|
||||
allow(Group).to receive(:find_by_full_path).with('gitlabhq/boards', any_args).and_return(true)
|
||||
|
||||
expect(get('/groups/gitlabhq/boards')).to route_to('groups#show', id: 'gitlabhq/boards')
|
||||
end
|
||||
|
||||
it 'shows boards index page' do
|
||||
allow(Group).to receive(:find_by_full_path).with('gitlabhq', any_args).and_return(true)
|
||||
|
||||
expect(get('/groups/gitlabhq/-/boards')).to route_to('groups/boards#index', group_id: 'gitlabhq')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue