From 465e0c0c2635588927ca707e6220cd7f232b3f17 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 7 Dec 2004 12:18:33 +0000 Subject: Added the possibility of having validate be protected for assert_(in)valid_column #263 [Tobias Luetke] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@67 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../lib/action_controller/assertions/active_record_assertions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack/lib/action_controller') diff --git a/actionpack/lib/action_controller/assertions/active_record_assertions.rb b/actionpack/lib/action_controller/assertions/active_record_assertions.rb index 9167eae53e..cdc9b6951d 100644 --- a/actionpack/lib/action_controller/assertions/active_record_assertions.rb +++ b/actionpack/lib/action_controller/assertions/active_record_assertions.rb @@ -22,7 +22,7 @@ module Test #:nodoc: # Assert the template object with the given name is an Active Record descendant and the specified column(s) are valid. def assert_valid_column_on_record(key = nil, columns = "", message = nil) record = find_record_in_template(key) - record.validate + record.send(:validate) cols = glue_columns(columns) cols.delete_if { |col| !record.errors.invalid?(col) } @@ -33,7 +33,7 @@ module Test #:nodoc: # Assert the template object with the given name is an Active Record descendant and the specified column(s) are invalid. def assert_invalid_column_on_record(key = nil, columns = "", message = nil) record = find_record_in_template(key) - record.validate + record.send(:validate) cols = glue_columns(columns) cols.delete_if { |col| record.errors.invalid?(col) } -- cgit v1.2.3