processings.rb 282 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 FactoryGirl.define do factory :processing, class: Processing do id "31" date "2011-10-20T18:26:43.151+00:00" state "READY" root_module_result_id "13" trait :errored do state "ERROR" end factory :errored_processing, traits: [:errored] end end