Rails教程3,RSpec失败

时间:2011-06-11 01:15:45

标签: ruby-on-rails ruby-on-rails-3 rspec-rails

我正在浏览Ruby on Rails Tutorial 3,并且正在做一个球,但是我遇到了一些无法解决的问题。当我运行我的规格时,两个测试失败。

Failures:
  1) UsersController PUT 'update' failure should render the 'edit' page
  Failure/Error: put :update, :id => @user, :user => @attr
  undefined local variable or method `object' for #<#<Class:0x00000102c861c8>:0x00000101d25558>
 # ./app/views/shared/_error_messages.html.erb:3:in `_app_views_shared__error_messages_html_erb___3390867530789228804_2170854120__2806434579894406668'
 # ./app/views/users/edit.html.erb:4:in `block in _app_views_users_edit_html_erb__558009768664311469_2170714160__919273585470661416'
 # ./app/views/users/edit.html.erb:3:in `_app_views_users_edit_html_erb__558009768664311469_2170714160__919273585470661416'
 # ./app/controllers/users_controller.rb:47:in `update'
 # ./spec/controllers/users_controller_spec.rb:158:in `block (4 levels) in <top (required)>'

2) UsersController PUT 'update' failure should have the right title
 Failure/Error: put :update, :id => @user, :user => @attr
 undefined local variable or method `object' for #<#<Class:0x00000102c861c8>:0x00000101b211f8>
 # ./app/views/shared/_error_messages.html.erb:3:in `_app_views_shared__error_messages_html_erb___3390867530789228804_2170854120__2806434579894406668'
 # ./app/views/users/edit.html.erb:4:in `block in _app_views_users_edit_html_erb__558009768664311469_2170714160__919273585470661416'
 # ./app/views/users/edit.html.erb:3:in `_app_views_users_edit_html_erb__558009768664311469_2170714160__919273585470661416'
 # ./app/controllers/users_controller.rb:47:in `update'
 # ./spec/controllers/users_controller_spec.rb:163:in `block (4 levels) in <top (required)>'

我已经搜索了我的代码,因为我可以将它与书中的代码进行比较,而且我什么也没做到。我确定这是我错过的一个愚蠢的小东西,我非常感谢第二对(或更多)的眼睛。

以下是我的测试:

describe "failure" do
  before(:each) do
    @attr = { :email => "", :name => "", :password => "", :password_confirmation => "" }
  end

  it "should render the 'edit' page" do
    put :update, :id => @user, :user => @attr
    response.should render_template('edit')
  end

  it "should have the right title" do
    put :update, :id => @user, :user => @attr
    response.should have_selector("title", :content => "Edit User")
  end
end

以下是users_controller的更新方法:

def update
@user = User.find(params[:id])
if @user.update_attributes(params[:user])
  flash[:success] = "Profile updated"
  redirect_to @user
else
  @title = "Edit User"
  render 'edit'
end
end

非常感谢任何关于我应该看的地方的想法。

1 个答案:

答案 0 :(得分:1)

问题的根源不在spec文件中,即使问题在那些spec文件中显现出来。教练Michael Hartl更改了以下声明:

<%= render 'shared/error_messages' %
                  to 
<%= render 'shared/error_messages', :object => f.object %>

语句。换句话说,他添加了“,:object =&gt; f.object“到第一个声明。并且您必须查看具有原始语句的所有文件并将其更改为第二个文件。如果您错过任何一个,您将遇到这些错误。具体来看下面的文件(以及任何其他可能有原始语句的文件):

app/views/users/edit.html.erb
app/views/users/fields.html.erb
app/views/users/new.html.erb
app/views/shared/micropost_form.html.erb
相关问题