我使用padrino和RSpec,我希望能够测试我写了一个辅助方法。
我有
规格/应用/控制器/ sessions_controller_spec.rb
describe "POST /sessions" do
it "should populate current_user after posting correct user/pass" do
u = User.create({:email=>"john@gmail.com", :password=>"helloworld", :password_confirmation=>"helloworld"})
user = {
email:"john@gmail.com",
password:"hellowolrd"
}
post '/sessions/new', user
current_user.should_not == "null"
end
end
应用程序/控制器/ sessions_controller.rb
post "/new" do
user = User.authenticate(params[:email], params[:password])
if user
session[:user_id] = user.id
redirect '/'
else
render "sessions/new"
end
end
应用程序/佣工/ sessions_helper.rb
Testing.helpers do
def current_user
@current_user ||= User.find(:id=>session[:user_id]) if session[:user_id]
end
end
所以,这的确是一个问题两个部分。 第一部分是我的方法CURRENT_USER甚至没有找到。 第二,我相信,如果它被发现,它可能会引发错误,不被定义会话。 但是,首先第一件事情,为什么会出现undefined_method CURRENT_USER?
Failures:
1) SessionsController POST /users should populate current_user after posting correct user/pass
Failure/Error: current_user.should_not == "null"
NameError:
undefined local variable or method `current_user' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_2:0x0000000313c0d8>
# ./spec/app/controllers/sessions_controller_spec.rb:20:in `block (3 levels) in <top (required)>'