spec/lib/support/rake/reconfigure_spec.rb (42 lines of code) (raw):

# frozen_string_literal: true RSpec.describe Support::Rake::Reconfigure do before do stub_gdk_yaml({}) end describe '.make_tasks' do it 'returns all make targets' do expect(described_class.make_tasks.map(&:target)).to match_array(%w[ jaeger-setup gitlab-topology-service-setup postgresql openssh-setup nginx-setup registry-setup elasticsearch-setup gitlab-runner-setup runner-setup geo-config gitlab-http-router-setup docs-gitlab-com-setup gitlab-observability-backend-setup gitlab-elasticsearch-indexer-setup gitlab-k8s-agent-setup gitlab-pages-setup gitlab-ui-setup gitlab-zoekt-setup grafana-setup object-storage-setup openldap-setup pgvector-setup prom-setup snowplow-micro-setup duo-workflow-executor-setup postgresql-replica-setup postgresql-replica-2-setup openbao-setup gdk-reconfigure-task siphon-setup nats-setup ]) end end end