Tagged Questions

2
votes
3answers
3k views

RSpec in Rails: How to skip a before_filter?

I am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to execute which action?" I am using authlogic for authentication and be9's acl9 for ...
1
vote
2answers
960 views

Testing before_filter gets called in action

How would one test that when an action in controller is being accessed, that controller's before_filter will be executed? The before_filter is tested in separate example group so that there's no need ...
0
votes
2answers
358 views

Rails 3 how to reset controller before_filters between specs?

I'm writing specs for a plugin which has different modules that the user can choose to load. Some of these modules dynamically add before_filters to ApplicationController. The problem is sometimes if ...
0
votes
1answer
446 views

rspec + remarkable + before_filter

How do I test before_filter with rspec and remarkable. With only rspec I would do something like: controller.stub(:logged_in?).and_return(true) But with remarkable this results in: undefined ...