Skip to content

Instantly share code, notes, and snippets.

@jaredbranum
Forked from colinrymer/gist:5798469
Created June 17, 2013 17:45
Show Gist options
  • Save jaredbranum/5798706 to your computer and use it in GitHub Desktop.
Save jaredbranum/5798706 to your computer and use it in GitHub Desktop.

Product management has come up with the idea of allowing website users to leave reviews and ratings for listings. This feedback will be entered similar to how leads are submitted, but the user must enter the following information:

  • name
  • email address
  • phone number
  • rating from 1 to 5
  • optional review

In addition to the above information, a CAPTCHA presenting three different apartment complexes (only one of which is correct) is used in conjunction with the user’s name and phone number to determine whether or not the user actually lived at the listing. After validating and verifying the information, the user gets redirected to a thank you page. After a review is successfully submitted, it will show up as the first entry in the reviews for the listing. Pre-existing “certified resident” reviews will be integrated along with reviews that are submitted through the site. On the search results page, users can sort on rating type or filter on review type and rating. A link on each listing will take the user to the review area, which is presented as the sixth tab on the listing’s details page.

@jaredbranum
Copy link
Author

Feature: User Ratings and Reviews
  In order to provide other users ratings and reviews
  A user should be able to
  Submit a rating and optional review

Scenario: Add a rating
  Given I am on the ratings and reviews submission form
  And I enter the required information
  And I select the correct apartment from the CAPTCHA
  When I click the submit button
  Then I see a thank you page

Scenario: Add a review
  Given I am on the ratings and reviews submission form
  And I enter the required information
  And I enter review text
  And I select the correct apartment from the CAPTCHA
  When I click the submit button
  Then I see a thank you page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment