使用rspec和factory_girl,在哪里存储需要共享的硬编码值?
我在rails 3应用程序中使用rspec和factory_girl。
我现在正在 /spec/factories 中设置我的工厂,只是好奇我应该在哪里放置其他工厂需要引用的属性哈希或硬编码 ID?
我对此很陌生,因此正在寻求有关如何正确执行此操作的指导。
I am using rspec and factory_girl in a rails 3 app.
I am setting up my factories in /spec/factories right now, and just curious where I should place attribute-hashes or hard-coded ID's that other factories will need to reference?
I'm new to this so looking for guidance on how to do it correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Factory Girl 希望您使用关联和序列,而不是硬编码的 ID。以下示例为您提供了在 rdoc 中搜索内容的核心以及使用工厂的基础知识。您可能应该远离任何硬编码的 ID,因为它会导致脆弱的测试,这些测试在某些随机情况下不起作用(这需要您半天的时间才能弄清楚)。
这里还有一些更好的信息: http://robots.thoughtbot.com /post/254496652/aint-no-calla-back-girl
Factory Girl is expecting that you use associations and sequences, not hard coded id's. the following examples give you the core of what to search for in the rdoc and basics for using the factories. You should probably stay away from any hard coded id's because it will lead to brittle tests that don't work on some random occasion (which takes you half a day to get to the bottom of).
some more nice info here: http://robots.thoughtbot.com/post/254496652/aint-no-calla-back-girl