How to spec a around_filter

Hi all, any of you guys had success specking out a around_filter? I
tried a few things like controller.should_receive
(:around_filter_method), controller.stub!(:around_filter_method) but
without success. In fact, the method is always executed even though I
stubed it. What I find strange is that I also have a before_filter and
I do not have any problems specking it. Why should it be different for
an around_filter?

Thanks

I havn’t done this myself, but would
controller.stub!(:around_filter_method).and_yield work?

Works like a charm!

Thanks a lot.

Works like a charm!

Thanks a lot.