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

Version Path
tdiary-5.1.3 vendor/bundle/ruby/2.6.0/gems/capybara-3.32.2/lib/capybara/rspec/matchers/match_style.rb
tdiary-5.1.3 vendor/bundle/ruby/2.7.0/gems/capybara-3.33.0/lib/capybara/rspec/matchers/match_style.rb
capybara-3.33.0 lib/capybara/rspec/matchers/match_style.rb
tdiary-5.1.2 vendor/bundle/ruby/2.7.0/gems/capybara-3.32.2/lib/capybara/rspec/matchers/match_style.rb
capybara-3.32.2 lib/capybara/rspec/matchers/match_style.rb
capybara-3.32.1 lib/capybara/rspec/matchers/match_style.rb
capybara-3.32.0 lib/capybara/rspec/matchers/match_style.rb
tdiary-5.1.1 vendor/bundle/ruby/2.7.0/gems/capybara-3.31.0/lib/capybara/rspec/matchers/match_style.rb
capybara-3.31.0 lib/capybara/rspec/matchers/match_style.rb