stringify_keys error after supplementing session variables in functional tests
I'm in the process of upgrading to Rails 3.1.0 from 3.0.10, and I'm using Devise for authentication. I have a number of functional tests that require me to set a single session variable. Stuff along the lines of: test "new clears current_lesson_id from session" do get :new, nil, {'current_lesson_id' => '234234'} assert_response :success assert_nil session[:current_lesson_id] end This was failing as my session info was clobbering the devise authentication session data, so my previous solution was to merge with the default session: test "new clears current_lesson_id from session" do get :new,