Convert fixtures into Factory Girl in Rails

后端 未结 3 445
孤城傲影
孤城傲影 2021-01-06 07:48

I\'d like to migrate my fixtures to \"Factory Girl\" in Rails.

Is there any easy way to convert all yml files in a factories.rb file?

3条回答
  •  攒了一身酷
    2021-01-06 08:17

    What exactly would you expect the resulting factories to be? The whole idea of Factories is that you don't have to maintain a long list of test data. Instead, the data is created on the fly, close to your tests, where it should be.

提交回复
热议问题