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