diff options
author | Robert Speicher <rspeicher@gmail.com> | 2012-11-19 23:49:25 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2012-11-28 11:00:02 -0500 |
commit | 4db362f5196710eab4c09fa394bc67b0d09f1ab8 (patch) | |
tree | d5a9d22f5fb3d7dafe169a020cb19e7a567f8bd0 /features | |
parent | 3d242a3154644bb1fea1b70d2661cee4f3db342c (diff) | |
download | gitlab-ce-4db362f5196710eab4c09fa394bc67b0d09f1ab8.tar.gz |
Add a link to each project on the Issues dashboard
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/dashboard/dashboard_issues.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/features/steps/dashboard/dashboard_issues.rb b/features/steps/dashboard/dashboard_issues.rb index e5caf905f95..5ace88023f0 100644 --- a/features/steps/dashboard/dashboard_issues.rb +++ b/features/steps/dashboard/dashboard_issues.rb @@ -7,6 +7,7 @@ class DashboardIssues < Spinach::FeatureSteps issues.each do |issue| page.should have_content(issue.title[0..10]) page.should have_content(issue.project.name) + page.should have_link(issue.project.name) end end |