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