summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/concern/issuable_shared_examples.rb
blob: 9604555c57d84bdc7228fbe7e25d0dc77fdd0611 (plain)
1
2
3
4
5
6
7
8
shared_examples_for 'matches_cross_reference_regex? fails fast' do
  it 'fails fast for long strings' do
    # took well under 1 second in CI https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/3267#note_172823
    expect do
      Timeout.timeout(3.seconds) { mentionable.matches_cross_reference_regex? }
    end.not_to raise_error
  end
end