I've got a custom action to validate the number of child attributes. I've put this in the parent's model:
class Location < ActiveRecord::Base
has_many :blacklisted
accepts_nested_attributes_for :blacklisted, :reject_if => lambda { |a| a[:mac].blank? }, :allow_destroy => true
...
validate :check_blacklisted_clients_count
private
def check_blacklisted_clients_count
if self.blacklisted.reject(&:marked_for_destruction?).count > 25
self.errors.add :base, "No more than 25 blacklisted clients allowed per location."
end
end
That works fine when I add through the browser however I'm trying to test this with rspec and I can't get it to fail (or pass, whichever way you look at it).
it "should not allow 26 blacklisted macs", :focus => true do
loc = FactoryGirl.create(:location_full)
25.times do
loc.blacklisted.create(mac: '00:22:33:44:55:66')
end
loc.blacklisted.create(mac: '00:22:33:44:55:66')
puts loc.blacklisted.count
.........
end
(I know that doesn't actually test anything yet - I just wanted to make sure only 25 are created).
I'm assuming this is because there's no validation in the blacklisted.rb model.
How can I get rspec to test this validation?