RSpec、webrat 和转义字符

发布于 2024-10-03 04:50:36 字数 382 浏览 1 评论 0原文

我在 Rails 3 中使用 RSpec 2webrat 来测试我的观点。我想确保视图不显示特殊字符(例如 “)。这是我的规范:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

菩提树下叶撕阳。 2024-10-10 04:50:36

我解决这个问题的方法是使用可以直接输入这些字符的文本编辑器。因此,规范将这样定义:

it 'does not show special HTML characters' do
    get '/'
    response.should_not contain('“')
end

查看 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:

it 'does not show special HTML characters' do
    get '/'
    response.should_not contain('“')
end

Checkout the ldquo site for some more information and references to other special characters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文