I have the following models:
class Pedido < ActiveRecord::Base
has_and_belongs_to_many :produtos
validate :has_one_or_less_produtos
private
def has_one_or_less_produtos
errors.add(:produtos, 'Não é permitido mais de 1 produto') if produtos.size >= 1
end
end
class Produto < ActiveRecord::Base
has_and_belongs_to_many :pedidos
end
However when adding more than one product to the order:
Pedido.first.produtos << Produto.last
The validation does not work, what's the problem?