summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/import_export/import_export_spec.rb
blob: d6409a2955086b6ac6e78f9d1ececdb0223a6fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe Gitlab::ImportExport, services: true do
  describe 'export filename' do
    let(:project) { create(:project, :public, path: 'project-path') }

    it 'contains the project path' do
      expect(described_class.export_filename(project: project)).to include(project.path)
    end

    it 'contains the namespace path' do
      expect(described_class.export_filename(project: project)).to include(project.namespace.path)
    end

    it 'does not go over a certain length' do
      project.path = 'a' * 100

      expect(described_class.export_filename(project: project).length).to be < 70
    end
  end
end