我正在关注 Railscast#179 关于如何使用种子数据进行操作
我完全按照剧集中所说的做了,一切对我来说都很好。
现在,我正在尝试将 fixtures 目录更改为spec/fixtures
而不是自动生成test/fixtures
现在,当我尝试通过调用从固定装置创建种子数据时
ActiveRecord::Fixtures.create_fixtures("#{Rails.root}/spec/fixtures", "langauges")
我收到以下错误
No such file or directory - /home/username/Aptana_Workspace/i18n_demo/spec/fixtures/langauges.yml
我是否需要更改任何配置以让 ActiveRecord 知道我的新灯具目录?create_fixtures 方法中指定的路径还不够吗?