Sha256: a353255767006e7d19ffb8536e896aeb65dec0aa988a59d5564d4b224eab1e30

Contents?: true

Size: 616 Bytes

Versions: 11

Compression:

Stored size: 616 Bytes

Contents

# frozen_string_literal: true

require 'capybara/rspec/matchers/base'

module Capybara
  module RSpecMatchers
    module Matchers
      class HaveText < CountableWrappedElementMatcher
        def element_matches?(el)
          el.assert_text(*@args)
        end

        def element_does_not_match?(el)
          el.assert_no_text(*@args)
        end

        def description
          "text #{format(text)}"
        end

        def format(content)
          content.inspect
        end

      private

        def text
          @args[0].is_a?(Symbol) ? @args[1] : @args[0]
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
tdiary-5.1.2 vendor/bundle/ruby/2.6.0/gems/capybara-3.29.0/lib/capybara/rspec/matchers/have_text.rb
tdiary-5.1.1 vendor/bundle/ruby/2.6.0/gems/capybara-3.29.0/lib/capybara/rspec/matchers/have_text.rb
capybara-3.30.0 lib/capybara/rspec/matchers/have_text.rb
tdiary-5.1.0 vendor/bundle/gems/capybara-3.29.0/lib/capybara/rspec/matchers/have_text.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/capybara-3.29.0/lib/capybara/rspec/matchers/have_text.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/capybara-3.29.0/lib/capybara/rspec/matchers/have_text.rb
capybara-3.29.0 lib/capybara/rspec/matchers/have_text.rb
capybara-3.28.0 lib/capybara/rspec/matchers/have_text.rb
capybara-3.27.0 lib/capybara/rspec/matchers/have_text.rb
capybara-3.26.0 lib/capybara/rspec/matchers/have_text.rb
capybara-3.25.0 lib/capybara/rspec/matchers/have_text.rb