gitlabhq/spec/requests/projects_spec.rb
2012-11-13 22:27:45 +11:00

82 lines
1.9 KiB
Ruby

require 'spec_helper'
describe "Projects" do
before { login_as :user }
describe 'GET /project/new' do
it "should work autocomplete", :js => true do
visit new_project_path
fill_in 'project_name', with: 'Awesome'
find("#project_path").value.should == 'awesome'
find("#project_code").value.should == 'awesome'
end
end
describe "GET /projects/show" do
before do
@project = create(:project, owner: @user)
@project.add_access(@user, :read)
visit project_path(@project)
end
it "should be correct path" do
current_path.should == project_path(@project)
end
end
describe "GET /projects/:id/edit" do
before do
@project = create(:project)
@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:")
end
end
describe "PUT /projects/:id" do
before do
@project = create(:project, owner: @user)
@project.add_access(@user, :admin, :read)
visit edit_project_path(@project)
fill_in 'project_name', with: 'Awesome'
fill_in 'project_code', with: 'gitlabhq'
click_button "Save"
@project = @project.reload
end
it "should be correct path" do
current_path.should == edit_project_path(@project)
end
it "should show project" do
page.should have_content("Awesome")
end
end
describe "DELETE /projects/:id" do
before do
@project = create(:project)
@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
end