В течение жизни я не понимаю, почему Authlogic не регистрирует меня в этом тесте интеграции. У меня не было никаких проблем с Authlogic, регистрирующим меня в функциональных тестах с использованием этого кода. Согласно authlogic rdocs (http://tinyurl.com/mb2fp2), имитация состояния входа в систему одинакова в функциональных и интеграционных тестах, поэтому я довольно смущенный. любая помощь МНОГО оценивается!
class TipsController < ApplicationController
before_filter :require_user, :only => [:destroy, :undelete]
def destroy
@tip = Tip.find(params[:id])
if can_delete?(@tip)
@tip.destroy
set_flash("good", "Tip deleted. <a href=\"#{undelete_tip_url(@tip.id)}\">Undo?</a>")
respond_to do |format|
format.html { redirect_to city_path(@tip.city)}
end
else
set_flash("bad", "Seems like you can't delete this tip, sorry.")
respond_to do |format|
format.html { render :action => "show", :id => @tip}
end
end
end
end
class DeleteTipAndRender < ActionController::IntegrationTest
context "log user in" do
setup do
@user = create_user
@tip = create_tip
end
context "delete tip" do
setup do
activate_authlogic
UserSession.create(@user)
@us = UserSession.find
post "/tips/destroy", :id => @tip.id
end
should_redirect_to("city_path(@tip.city)"){city_path(@tip.city)}
end
end
end