class RSpecHTML::Tags
HTML tag identification, used to determine viability for DOM traversal via chained methods.
Public Class Methods
each(&block)
click to toggle source
# File lib/rspec_html/tags.rb, line 10 def self.each(&block) tags.each { |tag| block.call(tag) } end
include?(val)
click to toggle source
# File lib/rspec_html/tags.rb, line 6 def self.include?(val) tags.include?(val.to_s.upcase) end