初探TDD开发ROR应用

安装factory_girl

安装factory_girl 主要为了方便构建测试数据

  • 首先打开Gemfile, 加入如下代码:
group :development, :test do
  gem 'factory_girl_rails'
end

在shell执行

bundle

参考

https://github.com/DatabaseCleaner/database_cleaner