11 lines
132 B
Ruby
11 lines
132 B
Ruby
|
FactoryGirl.define do
|
||
|
factory :applied_message do
|
||
|
user_id 1
|
||
|
applied_id 1
|
||
|
applied_type "MyString"
|
||
|
viewed 1
|
||
|
status 1
|
||
|
end
|
||
|
|
||
|
end
|