mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
10 lines
187 B
Ruby
10 lines
187 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe Schedule do
|
||
|
|
|
||
|
|
describe 'association' do
|
||
|
|
it { should belong_to(:program) }
|
||
|
|
it { should have_many(:event_schedules).dependent(:destroy) }
|
||
|
|
end
|
||
|
|
end
|