8152efbe2f
Now we have terminals for instance and group clusters we can remove the FF now. Deploying to instance clusters has been working without complaints too.
24 lines
684 B
Ruby
24 lines
684 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Clusters::InstancePolicy do
|
|
let(:user) { create(:user) }
|
|
let(:policy) { described_class.new(user, Clusters::Instance.new) }
|
|
|
|
describe 'rules' do
|
|
context 'when user' do
|
|
it { expect(policy).to be_disallowed :read_cluster }
|
|
it { expect(policy).to be_disallowed :update_cluster }
|
|
it { expect(policy).to be_disallowed :admin_cluster }
|
|
end
|
|
|
|
context 'when admin' do
|
|
let(:user) { create(:admin) }
|
|
|
|
it { expect(policy).to be_allowed :read_cluster }
|
|
it { expect(policy).to be_allowed :update_cluster }
|
|
it { expect(policy).to be_allowed :admin_cluster }
|
|
end
|
|
end
|
|
end
|