我的测试有问题。
我的 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]
rake routes:
edit_profile GET /profiles/:id/edit(.:format)个人资料#edit
个人资料PUT /profiles/:id(.:format)个人资料#update
我不明白我做错了什么。
答案 0 :(得分:0)
问题是PUT HTTP请求必须在profile_path上完成,而不是像在edit_profile_path上那样。 edit_profile_path与GET请求一起使用并显示编辑配置文件表单。它实际上并没有更新配置文件...
尝试
before { put profile_path(profile) }