2021-06-08 01:23:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe Terraform::ServicesController, feature_category: :package_registry do
|
2021-06-08 01:23:25 +05:30
|
|
|
describe 'GET /.well-known/terraform.json' do
|
|
|
|
subject { get '/.well-known/terraform.json' }
|
|
|
|
|
|
|
|
it 'responds with terraform service discovery' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(json_response['modules.v1']).to eq("/api/#{::API::API.version}/packages/terraform/modules/v1/")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|