mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
10 lines
245 B
Ruby
10 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe AcmeChallengesController, type: :request, feature_category: :pages do
|
|
it_behaves_like 'Base action controller' do
|
|
subject(:request) { get acme_challenge_path }
|
|
end
|
|
end
|