module CheckView

view? is used in interface/base.rb and in rspec/rutl_matchers.rb so the method lives over in this lonely place.

Public Instance Methods

page?(checkme)
Alias for: view?
view?(checkme) click to toggle source
# File lib/utilities/check_view.rb, line 6
def view?(checkme)
  checkme.ancestors.include?(RUTL::View)
rescue NoMethodError
  false
end
Also aliased as: page?