mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 04:34:03 +00:00
15 lines
256 B
Ruby
15 lines
256 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe Photo do
|
||
|
|
describe 'validations' do
|
||
|
|
|
||
|
|
it 'has a valid factory' do
|
||
|
|
expect(build(:photo)).to be_valid
|
||
|
|
end
|
||
|
|
|
||
|
|
it 'is not valid without a picture' do
|
||
|
|
should validate_presence_of(:picture)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|