gitlab-org--gitlab-foss/spec/requests/projects_spec.rb

71 lines
1.7 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
require 'spec_helper'
describe "Projects" do
before { login_as :user }
describe "GET /projects/show" do
before do
@project = create(:project, namespace: @user.namespace)
2011-10-08 21:36:38 +00:00
@project.add_access(@user, :read)
visit project_path(@project)
end
it "should be correct path" do
current_path.should == project_path(@project)
end
2012-05-27 10:39:57 +00:00
end
2011-10-08 21:36:38 +00:00
describe "GET /projects/:id/edit" do
before do
@project = create(:project)
2011-10-08 21:36:38 +00:00
@project.add_access(@user, :admin, :read)
visit edit_project_path(@project)
end
it "should be correct path" do
current_path.should == edit_project_path(@project)
end
it "should have labels for new project" do
page.should have_content("Project name is")
page.should have_content("Advanced settings:")
page.should have_content("Features:")
2011-10-08 21:36:38 +00:00
end
end
describe "PUT /projects/:id" do
before do
@project = create(:project, namespace: @user.namespace)
2011-10-08 21:36:38 +00:00
@project.add_access(@user, :admin, :read)
visit edit_project_path(@project)
fill_in 'project_name', with: 'Awesome'
2011-12-15 21:21:29 +00:00
click_button "Save"
2011-10-08 21:36:38 +00:00
@project = @project.reload
end
it "should be correct path" do
current_path.should == edit_project_path(@project)
2011-10-08 21:36:38 +00:00
end
it "should show project" do
page.should have_content("Awesome")
end
end
2012-05-27 10:39:57 +00:00
describe "DELETE /projects/:id" do
before do
@project = create(:project, namespace: @user.namespace)
2012-05-27 10:39:57 +00:00
@project.add_access(@user, :read, :admin)
visit edit_project_path(@project)
end
it "should be correct path" do
expect { click_link "Remove" }.to change {Project.count}.by(-1)
end
end
2011-10-08 21:36:38 +00:00
end