clarion/spec/models/slot_spec.rb

14 lines
308 B
Ruby
Raw Permalink Normal View History

2019-04-28 21:10:54 +03:00
require "rails_helper"
2019-04-28 21:10:54 +03:00
RSpec.describe Slot, type: :model do
it "belongs to a hall" do
hall = create :hall
expect(build(:slot, hall_id: hall.id).hall).to eq hall
end
2019-04-28 21:10:54 +03:00
it "belongs to an event" do
event = create :event
expect(build(:slot, event_id: event.id).event).to eq event
end
end