Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8295927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:47:03+00:00 2026-06-08T14:47:03+00:00

I have Project controller and rspec file for it. I’m usig current_user helper in

  • 0

I have Project controller and rspec file for it. I’m usig current_user helper in this way:

# projects_controller_spec.rb

describe "user signed in" do
  before(:each) { sign_in @user }
  after(:each)  { sign_out @user}

  describe "GET index" do      
    it "assigns all projects as @projects" do
      project = FactoryGirl.create(:project, :user => current_user)
      get :index, {}, valid_session
      assigns(:projects).should eq([project])
    end
  end
  ...
end

The helpers sign_in and sign_out seem to work fine but I’v got an error on current_user:

undefined local variable or method `current_user'

What might be a problem, how to fix it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T14:47:05+00:00Added an answer on June 8, 2026 at 2:47 pm

    It’s normal. You should create a User instance. You could use let like this :

    # projects_controller_spec.rb
    
    describe "user signed in" do
    
      let(:user) {FactoryGirl.create(:user)}
      before(:each) { sign_in user }
      after(:each)  { sign_out user}
    
      describe "GET index" do      
        it "assigns all projects as @projects" do
          project = FactoryGirl.create(:project, :user => user)
          get :index, {}, valid_session
          assigns(:projects).should eq([project])
        end
      end
      ...
    end
    

    You know than the current_user is user …

    You don’t need to sign out your use after each spec.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the project organized in this way: User is the main resource, each
I have this code for my Spring-based web project: Controller: @Controller @RequestMapping(mycontroller) public class
I have this rspec scenario: background do Factory.create(:project, :name => NAME, :url_name => url
I have a Java project that I'm trying to implement with a model-view-controller design.
I have an XCode iPad project using a navigation controller. I tried to get
I have a UIScrollView in my project. I have a view controller I would
I have the following rspec code: require 'spec_helper' require 'mocha' require 'rr' describe ProjectsController,
I have a Cakephp project the controller has several different methods. function Index() function
I have a project which has a view controller as initial screen and then
I have a project where an User can own a Project and make part

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.