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

system_hook_url_validator_spec.rb « validators « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 445c0c7f67af7a29912749de5203477a3a0c8635 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SystemHookUrlValidator do
  include_examples 'url validator examples', AddressableUrlValidator::DEFAULT_OPTIONS[:schemes]
  include_examples 'public url validator examples', allow_local_requests_from_system_hooks: true
end