如何使用 Cucumber 或 rspec 测试 RSS 提要
有人对如何使用黄瓜(偏好)或 rspec 测试 rss feed 有任何建议吗?
请注意,我目前正在开发一个 Rails 3 应用程序,并有一个博客,我将其公开为 rss feed。
我想设置一个测试以确保它保持良好的格式和可使用性。
谢谢!
乔纳森
Anyone have any tips on how to test an rss feed with cucumber (preference) or rspec?
Note, I am currently working on a Rails 3 application with a blog which I expose as an rss feed.
I would like to set up a test to ensure that it remains well formatted and consumable.
Thanks!
Jonathan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使用 RSpec 测试 RSS 提要,您可以使用
:format =>在控制器测试中使用“rss”
,即您可以简单地使用如下内容:使用 Test::Unit,您可以编写
To test an RSS feed with RSpec you can use
:format => "rss"
in your controller tests, i.e. you can simple use something like this:Using Test::Unit, you would write
您可以通过查看现有 RSS gem 的规范来找到一些想法,例如 feedzirra 。
You could find some ideas by looking at the specs for an existing RSS gem, such as feedzirra.