我正在测试一个 Rails 3.2.6 应用程序。
是否有可能做出表达的 Rspec/Capybara 断言,例如:
“如果我要 1970 年到 1990 年之间的电影,页面应该包含这些日期之间的电影:”
例如
it "should show films in the the chosen date range" do
page.should have_selector '.year', # then something like text: range(1970..1990)
end
相反,我可以检查没有“.year”元素包含不在该范围内的日期吗?
谢谢你的帮助。