Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error_tracking_shared_examples.rb « controllers « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08e5efcf63c34228c00d0cafccd42cf8e8e6bf56 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec.shared_examples 'sets the polling header' do
  subject { response.headers[Gitlab::PollingInterval::HEADER_NAME] }

  it { is_expected.to eq '1000'}
end