Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread Glenn Ford
That was it, thank you! Must have been a long day, I can't believe I didn't spot that :) On Mar 26, 2008, at 10:15 PM, David Chelimsky wrote: > On Wed, Mar 26, 2008 at 5:02 PM, Glenn Ford <[EMAIL PROTECTED]> wrote: >> Hi all! I've been through the RSpec Stories PeepCode and some >> various

Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread David Chelimsky
On Wed, Mar 26, 2008 at 5:02 PM, Glenn Ford <[EMAIL PROTECTED]> wrote: > Hi all! I've been through the RSpec Stories PeepCode and some various > other readings online, and now I'm trying to build a dummy application > of the traditional style: log in, make posts, add comments. > > So I've run t

Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread Glenn Ford
It actually should do a redirect, but checking for response.should be_success also fails. The request isn't actually being made. I just can't figure out why. Glenn On Mar 26, 2008, at 8:19 PM, Matt Berther wrote: > Hi Glen, > > I do not mean to insult you, but is /session/create actually d

Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread Matt Berther
Hi Glen, I do not mean to insult you, but is /session/create actually doing a redirect? A similar rspec test works for me. -- Matt Berther http://www.mattberther.com On Mar 26, 2008, at 5:51 PM, Glenn Ford wrote: > On Mar 26, 2008, at 6:28 PM, Chuck Remes wrote: > >> >> On Mar 26, 2008, at

Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread Glenn Ford
On Mar 26, 2008, at 6:28 PM, Chuck Remes wrote: > > On Mar 26, 2008, at 4:02 PM, Glenn Ford wrote: >> Hi all! I've been through the RSpec Stories PeepCode and some >> various >> other readings online, and now I'm trying to build a dummy >> application >> of the traditional style: log in, make

Re: [rspec-users] Trouble with my first Story

2008-03-26 Thread Chuck Remes
On Mar 26, 2008, at 4:02 PM, Glenn Ford wrote: > Hi all! I've been through the RSpec Stories PeepCode and some various > other readings online, and now I'm trying to build a dummy application > of the traditional style: log in, make posts, add comments. > > So I've run the scaffold for posts/comm