Could someone tell me why all is fine with the RSpec users_controller_spec.rb: require 'spec_helper'
describe Admin::UsersController do
let :user do
create_user!
end
context "standard users" do
before do
sign_in(:user, user)
end
it "can't access the index action" do
get 'index'
response.should redirect_to root_path
flash[:alert].should eql("You must be an admin to do that.")
end
end
end
until I added a before_filter to my controllers/admin/users_controller.rb:
before_filter authorize_admin!
Rubymine reported "No tests were found"
My env is: RubyMine 4.5.3 ruby 1.9.3-p194 rails 3.2.8 rspec 2.11.0 rspec-rails 2.11.0