You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just noticed that view helpers aren't automatically included in views like they were in RSpec 1, so you need to include them explicitly in all your view specs:
before do
view.extend ApplicationHelper
view.extend FooHelper
end