1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/spec/models/image_spec.rb

8 lines
193 B
Ruby

require "rails_helper"
describe Image do
it { is_expected.to belong_to(:user) }
it { is_expected.to have_attached_file(:image) }
it { is_expected.to validate_attachment_of(:image) }
end