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

public_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: 4fa6ad0cd6f7e4a3b4aa46ea96cd62dd01a07301 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

require 'spec_helper'

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