0

我的测试有问题。

有我的profile_pages_spec.rb

describe "ProfilePages" do

subject { page }

describe "edit" do
  let(:user) { FactoryGirl.create(:user) }
  let(:profile) do
    FactoryGirl.create(:profile, user: user)
  end
before do
  login user
  visit edit_profile_path(profile)
end

it { should have_selector('h2', text: 'Заполните информацию о себе') }

describe "change information" do
  let(:new_city)  { "Ulan-Bator" }
  let(:new_phone) { 1232442 }
  let(:new_gamelevel) { "M2" }
  let(:new_aboutme)   { "nfsfsdfds" }
  let(:submit) { "Сохранить" }
  before do
    fill_in "Город",             with: new_city
    fill_in "Телефон",           with: new_phone
    select new_gamelevel,        from: "Уровень игры"
    fill_in "О себе",            with: new_aboutme
    click_button submit
  end
  specify { profile.reload.city.should  == new_city }
  specify { profile.reload.phone.should == new_phone }
  specify { profile.reload.gamelevel.should == new_gamelevel }
  specify { profile.reload.aboutme.should == new_aboutme }
end
describe "submitting to the update action" do
  before { put edit_profile_path(profile) }
  specify { response.should redirect_to(user_path(user)) }
end
end
end

有我的profiles_controller.rb

  def edit
    @profile = current_user.profile
  end

  def update
    @profile = current_user.profile
  if @profile.update_attributes(params[:profile])
    flash[:success] = "Профиль обновлен!"
    redirect_to user_path(current_user)
  else
    render 'edit'
  end
 end

个人资料表格:

        <%= form_for(@profile) do |f| %>  

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

      <div><%= f.label :city, "Город" %>
      <%= f.text_field :city, :autofocus => true %></div>

      <div><%= f.label :phone, "Телефон" %>
      <%= f.number_field :phone %></div>

      <div><%= f.label :gamelevel, "Уровень игры" %>
      <%= f.select(:gamelevel,[['Pro', 'Pro'],
                               ['M1', 'M1'], 
                               ['M2', 'M2'],
                               ['M3', 'M3']])  %></div>

      <div><%= f.label :aboutme,"О себе" %>

      <%= f.text_area :aboutme, placeholder: "Немного о себе...",size: "              40x10"     %></div>

      <div><%= f.submit "Сохранить", class: "btn  btn-primary" %></div>
    <% end %>

在 Firefox 中,我可以发送我的表单并且数据会改变。但在我的规范中我有错误:

ActionController::RoutingError: 没有路由匹配 [PUT]

耙路线:

edit_profile GET /profiles/:id/edit(.:format) 配置文件#edit

配置文件 PUT /profiles/:id(.:format) 配置文件#update

我不明白我做错了什么。

4

1 回答 1

0

问题是 PUT HTTP 请求必须在 profile_path 上完成,而不是像您所做的那样在 edit_profile_path 上完成。edit_profile_path 与 GET 请求一起使用并显示编辑配置文件表单。它实际上并没有更新配置文件...

尝试

  before { put profile_path(profile) }
于 2013-07-13T14:50:27.820 回答