Sha256: 8708e94be93948f27124b84890d2b558378c4ec14d55e42a54c832a766593ae1
Contents?: true
Size: 661 Bytes
Versions: 1
Compression:
Stored size: 661 Bytes
Contents
require 'factory_girl' require 'ostruct' FactoryGirl.define do factory :qc_job_check, class: OpenStruct do wrong_industry_id nil wrong_function_id 4 wrong_career_level nil end factory :job, class: Hash do title "Meh" description "Foo Bar" id 4 label true initialize_with { attributes } end factory :data, class: PreprocessedData do data %w(haus fooo garten baaz pferd fooo) id 7 label true end factory :data_w_short_words, parent: :data do data %w(auto pferd gooo fooo) label false end factory :data_w_multiple_sections, parent: :data do data [%w(meeh auto),%w(baaz fooo)] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
svm_helper-0.2.1 | spec/factories.rb |