1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/policies/application_policy_spec.rb

26 lines
537 B
Ruby
Raw Normal View History

2018-12-12 22:01:50 -05:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe ApplicationPolicy do
2018-12-12 22:09:49 -05:00
subject { described_class.new account, record }
2018-12-12 22:01:50 -05:00
let(:record) { nil }
2018-12-12 22:36:40 -05:00
[
nil,
:guest_account,
:usual_account,
:superuser_account,
].each do |account_type|
context "when #{account_type || :no_account} is authenticated" do
let(:account) { create account_type if account_type }
it do
is_expected.to \
forbid_actions %i[index show new create edit update destroy]
end
end
2018-12-12 22:01:50 -05:00
end
end