blob: cc588e1e6c985909d821ad0d624edd14fc30ec86 (
plain)
1
2
3
4
5
6
7
8
9
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
|