Sha256: caaf2b869af9eb8fe153c80846356a7e6dedc237a5e16868d7bb04ed1734cf28
Contents?: true
Size: 308 Bytes
Versions: 9
Compression:
Stored size: 308 Bytes
Contents
require "nokogiri" RSpec::Matchers.define :have_tag do |tag| match do |string| document = Nokogiri::HTML(string.to_s) !!document.at_css(tag) end end RSpec::Matchers.define :have_xpath do |tag| match do |string| document = Nokogiri::HTML(string.to_s) !!document.at_xpath(tag) end end
Version data entries
9 entries across 9 versions & 3 rubygems