This file is indexed.

/usr/lib/ruby/vendor_ruby/capybara/spec/session/go_forward_spec.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
# frozen_string_literal: true
Capybara::SpecHelper.spec '#go_forward', requires: [:js] do
  it "should fetch a response from the driver from the previous page" do
    @session.visit('/')
    expect(@session).to have_content('Hello world!')
    @session.visit('/foo')
    expect(@session).to have_content('Another World')
    @session.go_back
    expect(@session).to have_content('Hello world!')
    @session.go_forward
    expect(@session).to have_content('Another World')
  end
end