Files
old-holivud2/spec/support/shared_examples_for_a_photoable.rb
2020-05-31 22:38:19 +02:00

12 lines
381 B
Ruby

shared_examples_for "a photoable" do
it { is_expected.to respond_to(:photos) }
it { is_expected.to respond_to(:photo) }
describe "validations" do
describe "#photos" do
it { is_expected.to allow_content_type("image/png", "image/jpeg").for(:photos) }
it { is_expected.not_to allow_content_type("text/plain", "application/pdf").for(:photos) }
end
end
end