spec/chef/cookbooks/gitlab-ee/recipes/geo-secondary_disable_spec.rb [20:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        it 'renders database.yml without geo database' do
          expect(database_yml[:production].keys).not_to include(:geo)
        end

        context 'with geo database specified' do
          before do
            stub_gitlab_rb(
              gitlab_rails: {
                databases: {
                  geo: {
                    enable: true,
                    db_connect_timeout: 50
                  }
                }
              }
            )
          end

          it 'renders database.yml without geo database' do
            expect(database_yml[:production].keys).not_to include(:geo)
          end
        end
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/chef/cookbooks/gitlab-ee/recipes/geo-secondary_spec.rb [91:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      it 'renders database.yml without geo database' do
        expect(database_yml[:production].keys).not_to include(:geo)
      end

      context 'with geo database specified' do
        before do
          stub_gitlab_rb(
            gitlab_rails: {
              databases: {
                geo: {
                  enable: true,
                  db_connect_timeout: 50
                }
              }
            }
          )
        end

        it 'renders database.yml without geo database' do
          expect(database_yml[:production].keys).not_to include(:geo)
        end
      end
    end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



