mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
13 lines
317 B
Ruby
13 lines
317 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Schedule do
|
|
|
|
describe 'association' do
|
|
it { should belong_to(:program) }
|
|
it { should belong_to(:track) }
|
|
it { should have_many(:event_schedules).dependent(:destroy) }
|
|
it { should have_many(:events).through(:event_schedules) }
|
|
end
|
|
end
|