If controller A's action redirects to another controller B's action, can i check in A's functional test that B's action template is being rendered?
in controller As fucntional test i.e. assert_template 'controllerB/some_view'
I know that this should be done in controllers Bs tests but I'm wondering if it is technically possible?
I have tried this in my own project but it's failing so i wanted to know if its actually impossible to avoid wasting any time hunting down invisible bugs.