Created
October 29, 2008 16:48
-
-
Save tenderlove/20743 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'test/unit' | |
class AssertSelectorTest < Test::Unit::TestCase | |
def setup | |
@doc = Nokogiri::HTML(<<-eohtml) | |
<html> | |
<body> | |
<p>Hello world!</p> | |
</body> | |
</html> | |
eohtml | |
end | |
def test_make_sure_that_have_selector_works | |
have_selector('p', @doc) | |
end | |
def have_selector expected_selector, document, msg = nil | |
assert document.css(expected_selector).length > 0, msg | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment