Feature: User issues
  In order to find issues I'm working on
  As a logged in user
  I need to be able to view a list of my issues

Scenario:  List user issues
  Given I am logged in
  And I am viewing my profile page
  When I click the "Your Issues" tab
  Then I should see a list of my issues

Scenario:  Show issue data
  Given I am logged in
  When I am viewing my issues
  Then I should see a column labeled "Project"
  And a column labeled "Summary"
  And a column labeled "Priority"
  And a column labeled "Cateogory"
  And a column labeled "Version"
  And a column labeled "Replied"
  And a column labeled "Last updated"
  And a column labeled "Assigned to"
  And a column labeled "Created"

Scenario:  Show filters
  Given I am logged in
  When I am viewing my issues
  Then I should see a list of filters

Scenario: Show pager
  Given I am logged in
  When I am viewing my issues
  And I have more than 50 issues
  Then I should see a pager

We used a more granular approach with the "Show issue data" scenario and a simpler one with the "Show filters" scenario. Let me know which one is preferable.

Comments

duellj’s picture

Status: Needs review » Closed (duplicate)

Darn, duplicated by #1570006: User Issues Page

eliza411’s picture

Status: Closed (duplicate) » Needs review

I don't think these are duplicates.

That one covers user/#####/track and this one covers project/issues/user - Reopening

eliza411’s picture

Status: Needs review » Closed (duplicate)

Closing as duplicate (again) since this is getting implemented in #1705566: Write Feature File/s for Project issues(your_issues.feature).