Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
File a bug at youtrack.jetbrains.net/issues/RUBY with the sample project to reproduce this problem. – CrazyCoder Sep 8 '12 at 5:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.