isRedirected()-> followRedirect()-> with('request')->begin()->
isParameter('module', 'job')->
isParameter('action', 'show')-> end()->
y les salio el siguiente error el consola por ejecutar las pruebas funcionales
PHP sent a "warning" error at C:\xampp\htdocs\symfony-1.4.8\lib\test\sfTestFunctionalBase.class.php line 433 (call_user_func_array() expects parameter 1 to be a valid callback, class 'sfBrowser' does not have a method 'isRedirected')
Les traigo la solución, realmente se debe de clocar asi
with('response')->begin()->isRedirected()->end()->followRedirect()->with('request')->begin()->isParameter('module', 'job')->isParameter('action', 'show')->end();
Esta solución fue gracias a el Ing. Leonardo Chacon.
Gracias, gracias!!!
ResponderBorrar