Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该将仅用于 RSpec 测试目的的测试数据放在哪里?
就像生活中的许多事情一样,这取决于。
如果数据很简单,您可以使用fixtures( 1 ),如果您需要更复杂的数据,请转到factory_girl_railsgem ( 2 )。
fixtures
factory_girl_rails
您还可以创建一个rake task用于填充您的数据库。
rake task
请考虑寻找类似的问题