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