`
wenke
  • 浏览: 79564 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

use factory_girl instead fixture for rspec test

阅读更多
1. Install factory_girl
  sudo gem install thoughtbot-factory_girl --source="http://gems.github.com"

2. Configure
   create factory.rb file in spec directory, i.e.
   Factory.define :user do |u|
    u.login "testing"
    u.password "testing"
   end

   in spec_helper file add:
   require 'factory_girl'
   require File.expand_path(File.dirname(__FILE__) + /factory)

3. Use factory_girl
   Factory(:user), Factory.build(:user)
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics