Project

General

Profile

Download (189 Bytes) Statistics
| Branch: | Tag: | Revision:
FactoryGirl.define do
factory :fact_name do
sequence(:name) {|n| "fact#{n}" }
end

factory :fact_value do
fact_name
sequence(:value) {|n| "value#{n}" }
host
end
end
(7-7/22)