mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 04:34:03 +00:00
16 lines
320 B
Ruby
16 lines
320 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe Organization do
|
||
|
|
let(:organization) { create(:organization) }
|
||
|
|
|
||
|
|
describe 'validation' do
|
||
|
|
it 'is not valid without a name' do
|
||
|
|
should validate_presence_of(:name)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
describe 'associations' do
|
||
|
|
it { should have_many(:conferences).dependent(:destroy) }
|
||
|
|
end
|
||
|
|
end
|