Files
sx-fc/spec/models/zone_spec.rb
2017-03-24 21:28:57 +06:30

12 lines
385 B
Ruby

require 'rails_helper'
RSpec.describe Zone, type: :model do
# Association test
# ensure Todo model has a 1:m relationship with the Item model
it { should have_many(:seat_tables).dependent(:destroy) }
# Validation tests
# ensure columns title and created_by are present before saving
it { should validate_presence_of(:name) }
it { should validate_presence_of(:created_by) }
end