osem-fcy/spec/models/schedule_spec.rb
Ana 3bf42a3cc4 Tests for the new associations and models
Tests for the schedule versioning new associations and models
2016-07-27 22:23:29 +02:00

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