diff options
Diffstat (limited to 'test/factories/gs_parameters.rb')
-rw-r--r-- | test/factories/gs_parameters.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/factories/gs_parameters.rb b/test/factories/gs_parameters.rb new file mode 100644 index 0000000..cc588e1 --- /dev/null +++ b/test/factories/gs_parameters.rb @@ -0,0 +1,10 @@ +# Read about factories at https://github.com/thoughtbot/factory_girl + +FactoryGirl.define do + factory :gs_parameter do + name "MyString" + section "MyString" + value "MyString" + class_type "MyString" + end +end |