我有一个rspec测试失败。
1) User pages edit with valid information should have link "Sign out", {:href=>"/signout"}
Failure/Error: it { should have_link('Sign out', href: signout_path) }
expected #has_link?("Sign out", {:href=>"/signout"}) to return true, got false
# ./spec/requests/user_pages_spec.rb:80:in `block (4 levels) in <top (required)>'
该测试会在登录后查看标头中是否存在“注销”链接。该代码可在浏览器中使用,但不适用于rspec。有问题的规范与Hartl教程一致:
describe "User pages" do
subject { page }
...
describe "edit" do
let(:user) { FactoryGirl.create(:user) }
before { visit edit_user_path(user) }
...
describe "with valid information" do
let(:new_name) { "New Name" }
let(:new_email) { "new@example.com"}
before do
fill_in "Name", with: new_name
fill_in "Email", with: new_email
fill_in "Password", with: user.password
fill_in "Confirm Password", with: user.password
click_button "Save changes"
end
it { should have_title(new_name) }
it { should have_selector('div.alert.alert-success') }
it { should have_link('Sign out', href: signout_path) }
specify { expect(user.reload.name).to eq new_name }
specify { expect(user.reload.email).to eq new_email }
end
end
end
以下代码是正在测试的标题模板(也遵循Hartl Rails教程)。我运行了一些测试(使用puts
)并发现登录后,signed_in?
函数返回false到rspec(在浏览器中测试时返回true)。
<% if signed_in? %>
<li><%= link_to "Users", '#' %></li>
<li id="fat-menu" class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Account <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><%= link_to "Profile", current_user %></li>
<li><%= link_to "Settings", edit_user_path(current_user) %></li>
<li class="divider"></li>
<li>
<%= link_to "Sign out", signout_path, method: "delete" %>
</li>
</ul>
</li>
<% else %>
<li><%= link_to "Sign in", signin_path %></li>
<% end %>
看来这是rspec的一个问题,我无法弄清楚该如何解决。
提前感谢您的帮助。
答案 0 :(得分:1)
更新:此答案的原始版本主要关注代码清单9.1,结果证明原样是正确的,并且已经恢复到当前状态而没有sign_in user
由于other problems the removal caused。但是,OP的摘要评论中提到的清单9.9的问题是一个真正的问题,并且将sign_in user
添加到该列表的修复仍然存在。
这似乎是Rails 4 tutorial中的一个错误,它从上一版本中出现的清单9.9中的sign_in(user)
块中删除了before
行。它已被纠正。