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

require 'spec_helper'

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