describe('Rutas de módulo crear hoja de ruta', function() { var route; beforeEach(function() { module('focaCrearHojaRuta'); inject(function($route) { route = $route; }); }); it('La ruta /venta-hoja-ruta/crear dirige correctamente', function() { //assert expect(route.routes['/venta-hoja-ruta/crear'].controller) .toBe('hojaRutaCtrl'); expect(route.routes['/venta-hoja-ruta/crear'].templateUrl) .toBe('src/views/hoja-ruta.html'); }); });