在阅读 Michael Hartl 写的 Learn Rails 书时,我被其中一个练习难住了。 通过示例学习 Rails,Michael Hartl
“为微博分页添加测试”
我的错误测试,放置在“描述“登录用户”中,如下所示:
describe "pagination" do
before(:all) do
30.times { FactoryGirl.create(:micropost, user: user) }
end
after(:all) { user.feed.delete_all }
page.should have_selector('div.pagination') }
it "should list each micropost" do
user.feed.paginate(page: 1).each do |user|
page.should have_selector('li', text: user.name)
end
end
end
无论我执行 page.should 还是 page.should_not,测试都显示为通过。
任何“提示/帮助”将不胜感激