我正在使用capybara编写集成测试,这是我测试的代码。
test "when providing invalid data" do
admin = create(:administrator)
signin_administrator_as admin.email, admin.password
visit new_admin_country_path
click_button t("buttons.admin.save")
assert_equal admin_countries_path, current_path
assert page.has_text? t("admin.form_error_message")
end
在控制器中
def create
@country = Country.new(country_params)
if @country.save
redirect_to admin_countries_path, notice: t("flash.admin.country.create.notice")
else
render :new
end
end
我使用我的表单部分用于插入和更新
<%= form_for @country, url: admin_country_path(@country) do |f| %>
<p>
<%= f.label :code, t("labels.country.code") %>
<%= f.text_field :code %>
</p>
<p>
<%= f.label :portuguese_name, t("labels.country.portuguese_name") %>
<%= f.text_field :portuguese_name %>
</p>
<p>
<%= f.label :spanish_name, t("labels.country.spanish_name") %>
<%= f.text_field :spanish_name %>
</p>
<p>
<%= f.label :english_name, t("labels.country.english_name") %>
<%= f.text_field :english_name %>
</p>
<%= f.submit t("buttons.admin.save") %>
<% end %>
但我的测试失败了,因为网址的最后一次删减。
Expected: "/admin/countries"
Actual: "/admin/countries/"
这是我的路线定义
namespace :admin do
root to: "signin#new"
get "/signin", to: "signin#new"
post "/signin", to: "signin#create"
get "/dashboard", to: "dashboard#index"
resources :countries
end
任何人都可以帮助我吗?
感谢。
答案 0 :(得分:0)
问题是您的表单使用的是指向展示页面的路线,而不是将其指向POST /admin/countries
端点。
您有两种选择:将网址更改为admin_countries_path
或仅使用<%= form_tag [:admin, @country] do %>
简化路线; :admin
指的是端点,因此Rails可以正确推断出资源的整个路径。