summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/middleware/read_only_spec.rb
blob: 642b47fe08779d959adfd75163e04768047460df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Middleware::ReadOnly do
  context 'when database is read-only' do
    before do
      allow(Gitlab::Database).to receive(:read_only?) { true }
    end

    it_behaves_like 'write access for a read-only GitLab instance'
  end
end