class Capybara::RSpecMatchers::HaveStyle
def description
def description 'have style' end
def does_not_match?(_actual)
def does_not_match?(_actual) raise ArgumentError, 'The have_style matcher does not support use with not_to/should_not' end
def matches?(actual)
def matches?(actual) wrap_matches?(actual) { |el| el.assert_style(*@args) } end