Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dvoryankin/afdfc7e7c3b29d27f0962bce09234959 to your computer and use it in GitHub Desktop.
Save dvoryankin/afdfc7e7c3b29d27f0962bce09234959 to your computer and use it in GitHub Desktop.
trait
factory :rubric do
title 'rubric'
content 'rubric_content'
trait :rubric1 do
title 'rubric1'
content 'rubric1'
end
trait :rubric2 do
title 'rubric2'
content 'rubric2'
end
trait :rubric3 do
title 'rubric3'
content 'rubric3'
end
factory :rubric, traits: [:rubric1, :rubric2, :rubric3]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment