mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 12:14:03 +00:00
14 lines
256 B
Ruby
14 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
|