On 8/31/07, Edgar Gonzalez <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I got the resource "Llamadas" nested in:
> - Operadores
> - Productos
> - Centros
>
> Here is part of my routes http://pastie.caboo.se/92767
>
> I want to spec that the routes for Llamadas, I tried several approachs:
>
> - route_for(:controller => "llamadas", :action => "exitosas",
> :operador_id => 1).should == "/operador/1/llamadas;exitosas"

route_for wraps ActionController::Routing::Routes.generate(options),
so whatever route_for is producing is what rails actually produces.
You may want to ask on the Rails list how people are approaching this
w/ test/unit. If you get an answer, please report it back here.

Cheers,
David



>
> - controller.send(:operador_exitosas_llamadas_path,@operador).should
> == "/operador/22/llamadas;exitosas"
>
> but nothing works.
>
> any clue?
>
> thanks in advance
> --
> Edgar González González
> E-mail: [EMAIL PROTECTED]
> http://www.hasmanydevelopers.com
> http://www.rubycorner.com
> http://www.to2blogs.com
> http://www.lacaraoscura.com
> --
> _______________________________________________
> rspec-users mailing list
> [email protected]
> http://rubyforge.org/mailman/listinfo/rspec-users
>
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to