0.0
No commit activity in last 3 years
No release in over 3 years
Rails testing assertions for checking your html is generated correctly.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

ShouldPricot¶ ↑

Test the html in your functional tests using the wicked Hpricot CSS / XPath selectors. Requires Hpricot. Designed for use with ActiveSupport::TestCase (Test/Unit)

Install¶ ↑

gem install should_pricot

(or use bundler)

Example¶ ↑

  • I want to test something appears on the page:

    element('h1').should_be_present
    
  • I want to test something does not appear:

    element('#power_user a[@href="/create/havok"]').should_be_missing
    
  • I want to check an elements contents:

    element('.intro p').should_be 'Welcome'
    
  • I want to count the number of times something appears:

    count('ol#girlfriends li').should_be 6
    
  • You can also pass a regex

    element("div.wicked").should_be /containg this/
    
  • Even better

    element('.date').should_contain "today"
    
  • You can also pass in html

    element("div.wicked", some_html).should_be_present
    

Please refer to the Hpricot library for more examples of the kind of selectors available.

Funktional¶ ↑

Designed to be used with the funktional testing library which provides contexts and class level assertions on top of Test:Unit.

Mad props to Kid80 for the regex matching patch.

Copyright © 2009 [Brent Greeff], released under the MIT license