added minimum length to abstract in event model

This commit is contained in:
redasus 2016-08-16 16:52:45 +05:30
parent 10121ae6d0
commit f56cafdaf1
3 changed files with 4 additions and 1 deletions

View file

@ -31,6 +31,7 @@ class Event < ActiveRecord::Base
validate :before_end_of_conference, on: :create
validates :title, presence: true
validates :abstract, presence: true
validates_length_of :abstract, minimum: 20
validates :event_type, presence: true
validates :program, presence: true
validates :max_attendees, numericality: { only_integer: true, greater_than_or_equal_to: 1, allow_nil: true }

View file

@ -182,7 +182,7 @@ class User < ActiveRecord::Base
end
def confirmed?
!confirmed_at.nil?
confirmed_at.present?
end
def proposals(conference)

View file

@ -22,9 +22,11 @@ describe Event do
it { is_expected.to validate_presence_of(:title) }
it { is_expected.to validate_presence_of(:abstract) }
it { should validate_length_of(:abstract).is_at_least(20) }
it { is_expected.to validate_presence_of(:program) }
it { is_expected.to validate_presence_of(:event_type) }
describe 'max_attendees_no_more_than_room_size' do
before :each do
unless (venue = event.program.conference.venue)