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

file_store_mounter_shared_examples.rb « concerns « models « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cb087c47adf4ec220c013e753fd7e9e83035744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

RSpec.shared_examples 'mounted file in local store' do
  it 'is stored locally' do
    expect(subject.file_store).to be(ObjectStorage::Store::LOCAL)
    expect(subject.file).to be_file_storage
    expect(subject.file.object_store).to eq(ObjectStorage::Store::LOCAL)
  end
end

RSpec.shared_examples 'mounted file in object store' do
  it 'is stored remotely' do
    expect(subject.file_store).to eq(ObjectStorage::Store::REMOTE)
    expect(subject.file).not_to be_file_storage
    expect(subject.file.object_store).to eq(ObjectStorage::Store::REMOTE)
  end
end