Sha256: 8a63a6abe43c9d6410c67f0396fe6c26b02849e47e0a047647f2d7d343c14277
Contents?: true
Size: 1 KB
Versions: 35
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true require 'capybara/rspec/matchers/base' module Capybara module RSpecMatchers module Matchers class MatchStyle < WrappedElementMatcher def initialize(styles = nil, **kw_args, &filter_block) styles, kw_args = kw_args, {} if styles.nil? super(styles, **kw_args, &filter_block) end def element_matches?(el) el.assert_matches_style(*@args, **@kw_args) end def does_not_match?(_actual) raise ArgumentError, 'The match_style matcher does not support use with not_to/should_not' end def description 'match style' end end end end end module Capybara module RSpecMatchers module Matchers ## # @deprecated class HaveStyle < MatchStyle def initialize(*args, **kw_args, &filter_block) warn 'HaveStyle matcher is deprecated, please use the MatchStyle matcher instead' super end end end end end
Version data entries
35 entries across 25 versions & 4 rubygems