Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-30 01:59:12 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-01-30 01:59:12 +0400
commitfca1ffb888e506f7ab0551d01321e462c09d5112 (patch)
tree216aa7b0fe4930ad31f9daad403e197a3798a0b3 /spec/requests/issues_spec.rb
parent20721eff1c9a9a8f291d68538f209091b92961b4 (diff)
Bootstrap: Issues, Merge Requests, SSH Key completed
Diffstat (limited to 'spec/requests/issues_spec.rb')
-rw-r--r--spec/requests/issues_spec.rb14
1 files changed, 6 insertions, 8 deletions
diff --git a/spec/requests/issues_spec.rb b/spec/requests/issues_spec.rb
index 62daf168b78..bff99531ee7 100644
--- a/spec/requests/issues_spec.rb
+++ b/spec/requests/issues_spec.rb
@@ -51,17 +51,17 @@ describe "Issues" do
# admin access to remove issue
@user.users_projects.destroy_all
project.add_access(@user, :read, :write, :admin)
- visit project_issues_path(project)
+ visit edit_project_issue_path(project, @issue)
end
it "should remove entry" do
expect {
- click_link "destroy_issue_#{@issue.id}"
+ click_link "Remove"
}.to change { Issue.count }.by(-1)
end
end
- describe "statuses", :js => true do
+ describe "statuses" do
before do
@closed_issue = Factory :issue,
:author => @user,
@@ -76,13 +76,13 @@ describe "Issues" do
end
it "should show only closed" do
- choose "closed_issues"
+ click_link "Closed"
should have_no_content(@issue.title)
should have_content(@closed_issue.title[0..25])
end
it "should show all" do
- choose "all_issues"
+ click_link "All"
should have_content(@issue.title[0..25])
should have_content(@closed_issue.title[0..25])
end
@@ -182,7 +182,6 @@ describe "Issues" do
:assignee => @user,
:project => project
visit project_issues_path(project)
- page.execute_script("$('.action-links').css('display', 'block');")
click_link "Edit"
end
@@ -200,7 +199,6 @@ describe "Issues" do
it "should update issue fields" do
click_button "Save"
- page.should_not have_content("Issue ##{@issue.id}")
page.should have_content @user.name
page.should have_content "bug 345"
page.should have_content project.name
@@ -226,7 +224,7 @@ describe "Issues" do
@issue.save
visit project_issues_path(project)
- choose 'closed_issues'
+ click_link 'Closed'
fill_in 'issue_search', :with => 'foobar'
page.should have_content 'foobar'