Skip to content

Instantly share code, notes, and snippets.

@tenderlove
Created October 29, 2008 16:48
Show Gist options
  • Save tenderlove/20743 to your computer and use it in GitHub Desktop.
Save tenderlove/20743 to your computer and use it in GitHub Desktop.
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