ruby session variables
I'm trying to write basic assert test: def assert_session_has ( sessionvar ) return assert_not_nil session[:sessionvar] end when I compile: def test_auth_bob #some setup and other validation methods assert_not_nil session[user] #more validations... end I get the following error: test_auth_bob(UserControllerTest): N...