预期#has_link?(“New Todo Item”,{:href =>“/ todo_lists / 1555 / todo_items / new”})返回true,得到false

时间:2016-01-10 13:24:48

标签: ruby-on-rails ruby coursera-api

我正在做课程作业。 错误是

expected #has_link?("New Todo Item", {:href=>"/todo_lists/1555/todo_items/new"}) to return true, got false

测试

expect(page).to have_link('New Todo Item', :href => "#{new_todo_list_todo_item_path(tl_id)}")

我在视图中定义

<%= link_to 'New Todo item', new_todo_list_todo_item_path(@todo_list) %>

但它仍然给我错误

1 个答案:

答案 0 :(得分:0)

您的链接标题为New Todo item,测试链接标题为New Todo Item。 检查链接标题拼写