2019-07-25 01:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-07-23 19:28:12 -04:00
|
|
|
module IssueHelpers
|
|
|
|
def visit_issues(project, opts = {})
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path project, opts
|
2016-07-23 19:28:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def first_issue
|
|
|
|
page.all('ul.issues-list > li').first.text
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_issue
|
|
|
|
page.all('ul.issues-list > li').last.text
|
|
|
|
end
|
|
|
|
end
|