Hi,
On Thu, Jan 13, 2011 at 13:39, Jason Nah wrote:
> I have the following defined in my routes file
>
> resources :users
>
> And a controller:
> class UsersController < ApplicationController
> before_filter :load_user
>
> def show
> redirect_to(user_path(@user))
> end
> private
On Jan 12, 2011, at 11:39 PM, Jason Nah wrote:
> Guys,
>
> This could be me, but I thought I'd check
>
> For some reason, when I spec controllers, I run into this problem
> (intermittently it would seem). Right now, I have a spec that fails
> predictably.
>
> I'm using
> * Rspec 2.4.0
> * Rsp
Guys,
This could be me, but I thought I'd check
For some reason, when I spec controllers, I run into this problem
(intermittently it would seem). Right now, I have a spec that fails
predictably.
I'm using
* Rspec 2.4.0
* Rspec-rails 2.4.1
* Rails 3
* Mocha 0.9.10
I have the following defined in