RSpec、webrat 和转义字符
我在 Rails 3 中使用 RSpec 2 和 webrat 来测试我的观点。我想确保视图不显示特殊字符(例如 “
)。这是我的规范:
it 'does not show special HTML characters' do
get '/'
response.should_not contain('“')
end
问题是 webrat 解析 “
引号,而浏览器(在 Chrome 和 Firefox 中测试)则不会。有什么方法可以告诉 RSpec 或 webrat 解析浏览器会执行的字符串吗?
I'm using RSpec 2 with webrat in Rails 3 to test my views. I want to make sure the views don't show special characters (like “
). Here is my spec:
it 'does not show special HTML characters' do
get '/'
response.should_not contain('“')
end
Problem is webrat parses the “
quotes while the browser - tested in Chrome and Firefox - does not. Is there any way I can tell RSpec or webrat to parse the string a browser would do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决这个问题的方法是使用可以直接输入这些字符的文本编辑器。因此,规范将这样定义:
查看 ldquo 网站 以获取更多信息和对其他特殊字符的引用。
The way I would solve this problem is to use a text editor that can input these characters directly. So the spec will be defined thus:
Checkout the ldquo site for some more information and references to other special characters.