Sha256: 31c233cb23d2dab8b2111b81fb61c0e821ceafe46e8779dc73219757b4a97918
Contents?: true
Size: 497 Bytes
Versions: 139
Compression:
Stored size: 497 Bytes
Contents
FactoryGirl.define do factory :mdm_module_author, :class => Mdm::Module::Author do name { generate :mdm_module_author_name } # # Associations # association :detail, :factory => :mdm_module_detail factory :full_mdm_module_author do email { generate :mdm_module_author_name } end end sequence :mdm_module_author_name do |n| "Mdm::Module::Author#name #{n}" end sequence :mdm_module_author_email do |n| "Mdm::Module::Author#email #{n}" end end
Version data entries
139 entries across 139 versions & 1 rubygems