在 Rails 中使用没有相应模型的装置
我目前有一些大字符串,我想在测试日志抓取器时将其用作测试数据。将这些字符串放在 YAML 文件中会很好。
我很乐意在以简短明了的方式进行测试时参考它们,例如:
log_lines(:incorrect_string)
是否有使用固定装置来执行此操作,或者它们专门用于相应的模型?
I currently have some large strings that I would like use as test data when testing a log scraper. It would work well to have these strings in a YAML file.
I would love to refer to them while testing in a short and concise manner such as:
log_lines(:incorrect_string)
Is there anyway to do this using fixtures, or are they exclusively for use with a corresponding model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的 yaml 看起来像这样:
那么你就可以
欢呼了!
If your yaml looks like this:
then you can just
cheer!