This file is indexed.

/usr/lib/ruby/vendor_ruby/capybara/spec/session/element/assert_match_selector.rb is in ruby-capybara 2.10.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Capybara::SpecHelper.spec '#assert_matches_selector' do
  before do
    @session.visit('/with_html')
    @element = @session.find(:css, 'span', text: '42')
  end

  it "should be true if the given selector matches the element" do
    expect(@element.assert_matches_selector(:css, '.number')).to be true
  end

  it "should be false if the given selector does not match the element" do
    expect { @element.assert_matches_selector(:css, '.not_number') }.to raise_error(Capybara::ElementNotFound)
  end

  it "should not be callable on the session" do
    expect { @session.assert_matches_selector(:css, '.number') }.to raise_error(NoMethodError)
  end

  it "should wait for match to occur", requires: [:js] do
    @session.visit('/with_js')
    input = @session.find(:css, '#disable-on-click')

    expect(input.assert_matches_selector(:css, 'input:enabled')).to be true
    input.click
    expect(input.assert_matches_selector(:css, 'input:disabled')).to be true
  end

  it "should not accept count options" do
    expect { @element.assert_matches_selector(:css, '.number', count: 1) }.to raise_error(ArgumentError)
  end
end