Re: [rspec-users] how to invoke multiple controllers in the same describe block?

2010-09-03 Thread Pat Maddox
Lille wrote: Hi, I seek to authenticate and then test other routing in RSpec, but the standard RSpec vernacular... describe SomeController do it "blah-blah" do get :new ... end end ...doesn't seem to allow me to post my login data, as in the following pseudo-code: describe

Re: [rspec-users] how to invoke multiple controllers in the same describe block?

2010-09-03 Thread David Chelimsky
On Sep 3, 2010, at 12:12 PM, Lille wrote: > Hi, > > I seek to authenticate and then test other routing in RSpec, but the > standard RSpec vernacular... > > describe SomeController do > > it "blah-blah" do > get :new > ... > end > > end > > ...doesn't seem to allow me to post my log

[rspec-users] how to invoke multiple controllers in the same describe block?

2010-09-03 Thread Lille
Hi, I seek to authenticate and then test other routing in RSpec, but the standard RSpec vernacular... describe SomeController do it "blah-blah" do get :new ... end end ...doesn't seem to allow me to post my login data, as in the following pseudo-code: describe SomeController do