我正在尝试编写一个单元测试来断言一些元标记值(在响应部分下)。如何使用属性标签检查单个值?前任:
<meta property="keyword" content="site keywords" />
<meta property="description" content="site description" />
到目前为止,这就是我所得到的。但它以失败告终。
it "should check meta fields" do
get :show, {:format => 'html' }
r = response.body
r.should have_selector('meta', :content => @site.title)
end