25 lines
592 B
Ruby
25 lines
592 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe ImageUploadPolicy, type: :policy do
|
|
subject { described_class.new(user, image) }
|
|
|
|
let(:image) { "📸.jpg" }
|
|
|
|
context "when user is not signed in" do
|
|
let(:user) { nil }
|
|
|
|
it { within_block_is_expected.to raise_error(Pundit::NotAuthorizedError) }
|
|
end
|
|
|
|
context "when user is signed in" do
|
|
let(:user) { build_stubbed(:user) }
|
|
|
|
it { is_expected.to permit_actions(%i[create]) }
|
|
|
|
context "when user is banned" do
|
|
let(:user) { build(:user, :banned) }
|
|
|
|
it { is_expected.to forbid_actions(%i[create]) }
|
|
end
|
|
end
|
|
end
|