Sha256: 384f6455282820fd0693640948a35dbe4b1039c18c852507af232cb38c52d126
Contents?: true
Size: 844 Bytes
Versions: 9
Compression:
Stored size: 844 Bytes
Contents
# frozen_string_literal: true require 'capybara/rspec/matchers/base' module Capybara module RSpecMatchers module Matchers class MatchStyle < WrappedElementMatcher 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
9 entries across 8 versions & 2 rubygems