mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
11 lines
198 B
Ruby
11 lines
198 B
Ruby
|
|
require 'spec_helper'
|
||
|
|
|
||
|
|
describe EventSchedule do
|
||
|
|
|
||
|
|
describe 'association' do
|
||
|
|
it { should belong_to(:schedule) }
|
||
|
|
it { should belong_to(:event) }
|
||
|
|
it { should belong_to(:room) }
|
||
|
|
end
|
||
|
|
end
|