summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/bitbucket_import/wiki_formatter_spec.rb
blob: 7b5c7847f2de202750be03608b722dd01bb2e323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::BitbucketImport::WikiFormatter do
  let(:project) do
    create(:project,
           namespace: create(:namespace, path: 'gitlabhq'),
           import_url: 'https://xxx@bitbucket.org/gitlabhq/sample.gitlabhq.git')
  end

  subject(:wiki) { described_class.new(project) }

  describe '#disk_path' do
    it 'appends .wiki to disk path' do
      expect(wiki.disk_path).to eq project.wiki.disk_path
    end
  end

  describe '#full_path' do
    it 'appends .wiki to project path' do
      expect(wiki.full_path).to eq project.wiki.full_path
    end
  end

  describe '#import_url' do
    it 'returns URL of the wiki repository' do
      expect(wiki.import_url).to eq 'https://xxx@bitbucket.org/gitlabhq/sample.gitlabhq.git/wiki'
    end
  end
end