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

issuable_shared_examples.rb « concern « models « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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