Как проверить, существует ли вспомогательный метод / переменная в rspec? - PullRequest
2 голосов
/ 06 января 2011

Я все еще пытаюсь выяснить rspec и сейчас я использую authlogic для обработки моих пользователей и сессий.Я делал обычные аутентичные вещи, такие как добавление метода def current_user к контроллеру applciation и как вспомогательный метод, но как мне получить к нему доступ в моем файле контроллера rspec?

Вот мой user_sessions_controller_spec.rb:

require 'spec_helper'
require 'authlogic'

describe UserSessionsController do

  context "user is already logged in" do

    before(:each) do
      include Authlogic::TestCase
      activate_authlogic
      UserSession.create Factory.build(:user)
    end

    it "should redirect the user to the home page" do
      get 'new'
      response.should redirect_to(home_path)
    end

  end

  describe "#create" do
    context "when the user is not logged in" do    
      before(:each) do
        current_user = nil
      end

      it "correct authorization should create a new session" do
        post 'create', {:login => "afactoryuser", :password => "apass", :password_confirmation => "apass"}
        current_user.should_not be_nil
      end
    end
  end

end

когда я запускаю rspec, он просто говорит мне:

correct authorization should create a new session
undefined local variable or method `current_user' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_2::Nested_1:0x000001017d3410>

, так что я предполагаю, что это в контексте rspec ... но откуда мне знать, что это должно быть в user-session_controller?И я даже проверяю это правильно?

1 Ответ

3 голосов
/ 19 января 2011

Введено current_user в ваш RSpec, попробуйте controller.current_user

Если вы хотите заблокировать метод current_user, используйте: controller.stub!(:current_user).and_return(whatever) in before :each блок, но тогда вы всегда получите whatever, если заглушите его.

...