Move specs to ce directory
This commit is contained in:
parent
985388b37e
commit
b9cb49ad45
2 changed files with 34 additions and 0 deletions
|
@ -141,6 +141,28 @@ describe GroupsController do
|
|||
end
|
||||
|
||||
describe 'POST #create' do
|
||||
it 'allows creating a group' do
|
||||
sign_in(user)
|
||||
|
||||
expect do
|
||||
post :create, params: { group: { name: 'new_group', path: "new_group" } }
|
||||
end.to change { Group.count }.by(1)
|
||||
|
||||
expect(response).to have_gitlab_http_status(302)
|
||||
end
|
||||
|
||||
context 'authorization' do
|
||||
it 'allows an admin to create a group' do
|
||||
sign_in(create(:admin))
|
||||
|
||||
expect do
|
||||
post :create, params: { group: { name: 'new_group', path: "new_group" } }
|
||||
end.to change { Group.count }.by(1)
|
||||
|
||||
expect(response).to have_gitlab_http_status(302)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when creating subgroups', :nested_groups do
|
||||
[true, false].each do |can_create_group_status|
|
||||
context "and can_create_group is #{can_create_group_status}" do
|
||||
|
|
|
@ -292,6 +292,18 @@ describe ProjectsController do
|
|||
end
|
||||
|
||||
describe 'GET edit' do
|
||||
it 'allows an admin user to access the page' do
|
||||
sign_in(create(:user, :admin))
|
||||
|
||||
get :edit,
|
||||
params: {
|
||||
namespace_id: project.namespace.path,
|
||||
id: project.path
|
||||
}
|
||||
|
||||
expect(response).to have_gitlab_http_status(200)
|
||||
end
|
||||
|
||||
it 'sets the badge API endpoint' do
|
||||
sign_in(user)
|
||||
project.add_maintainer(user)
|
||||
|
|
Loading…
Reference in a new issue