search for: bad_name

Displaying 1 result from an estimated 1 matches for "bad_name".

Did you mean: ad_name
2006 Feb 02
0
Setting and testing session data within a test.
Hi everyone, One of my actions depends on some session data being set. When I try to set the data in a test case, I get an error. Code: session[:conditions] = [ "LOWER(username) LIKE :bad_name", { :bad_name => "asdasdasd" } ] Error: TypeError: Symbol as array index test/functional/personnel_controller_test.rb:43:in `[]='' How can I set session data in a test? In normal use, the data is set in one action, which then redirects...