search for: test_index_flash

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

2006 May 05
1
testing for flash.now values
...in a functional test to get the value of the flash hash if the value was set using flash.now? It doesn''t appear to be visible in flash in the test. Example: Controller: def index flash.now[''notice''] = ''this is the index'' end Functional Test: def test_index_flash get :index assert_equal ''this is the index'', flash[''notice''] end This will fail with the message: <"this is the index"> expected but was <nil>. Any ideas? I''ve seen this come up in the mailing lists before, but can''t...