From 4332e0dafd049302735271813f8aa91f2cc6710e Mon Sep 17 00:00:00 2001 From: Norman Clarke Date: Fri, 9 Apr 2010 16:03:37 -0300 Subject: [PATCH] Ensure test coverage for attr_protected on cached_slug. --- test/active_record_adapter/ar_test_helper.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/active_record_adapter/ar_test_helper.rb b/test/active_record_adapter/ar_test_helper.rb index fd716c29a..9c4474cb8 100644 --- a/test/active_record_adapter/ar_test_helper.rb +++ b/test/active_record_adapter/ar_test_helper.rb @@ -33,7 +33,6 @@ class District < ActiveRecord::Base # A model that specifies a custom cached slug column class City < ActiveRecord::Base - attr_accessible :name has_friendly_id :name, :use_slug => true, :cache_column => "my_slug" end