Donald French <[EMAIL PROTECTED]> writes:

> I am trying to figure out how to properly test a view when part of the
> view is is protected with a role check <% if current_user.admin? %>..
> How do I force a log in or mock the current user. I need to do it in a
> DRY way as this is used throughout the system checking various
> privileges.
>
> Don French
> _______________________________________________
> rspec-users mailing list
> rspec-users@rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users

You can stub the template object:
  template.stub!(:current_user).and_return mock_admin
  
Pat
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to