blob: 28b760383daf3a477ac49bd9c06c96ff76345df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FactoryGirl.define do
factory :compliance_control do
sequence(:name) { |n| "Compliance control #{n}" }
type "Type"
criticity :info
code "code"
comment "Text"
association :compliance_control_set
association :compliance_control_block
end
end
|