diff options
| author | Robert | 2018-01-09 15:49:02 +0100 | 
|---|---|---|
| committer | Alban Peignier | 2018-01-10 17:47:10 +0100 | 
| commit | 2be1e1c2bc313f586c4e0385d90a8cfbcd9ab609 (patch) | |
| tree | 0a460e5e222c699423c4f163dcf65549b0e873a0 /spec/factories | |
| parent | df77b06a42277b3c36627a2bfaa84ddf501d9f5f (diff) | |
| download | chouette-core-2be1e1c2bc313f586c4e0385d90a8cfbcd9ab609.tar.bz2 | |
Refs: #5505@1h; Spec discussed, model scaffolded [amend me] [skip-ci]
Diffstat (limited to 'spec/factories')
| -rw-r--r-- | spec/factories/custom_fields.rb | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/spec/factories/custom_fields.rb b/spec/factories/custom_fields.rb new file mode 100644 index 000000000..8ce8aae91 --- /dev/null +++ b/spec/factories/custom_fields.rb @@ -0,0 +1,10 @@ +FactoryGirl.define do +  factory :custom_field do +    code "MyString" +    resource_type "MyString" +    name "MyString" +    field_type "MyString" +    options "" +    workgroup_id "" +  end +end | 
