| 
							
							# frozen_string_literal: true
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							module IssueHelpers
 | 
						
						
						
						
							 | 
							
							  def visit_issues(project, opts = {})
 | 
						
						
						
						
							 | 
							
							    visit project_issues_path project, opts
 | 
						
						
						
						
							 | 
							
							  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
 |