Welcome to mirror list, hosted at ThFree Co, Russian Federation.

export_helper_spec.rb « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ab9560ca6a83cf568f019443cdc6c41a146e2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ExportHelper do
  describe '#project_export_descriptions' do
    it 'includes design management' do
      expect(project_export_descriptions).to include('Design Management files and data')
    end
  end
end