11 lines
239 B
Ruby
11 lines
239 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Room, type: :model do
|
|
it { should belong_to(:zone) }
|
|
|
|
it { should validate_presence_of(:name) }
|
|
it { should validate_presence_of(:seater) }
|
|
it { should validate_presence_of(:is_active) }
|
|
|
|
end
|