Product variant fix

This commit is contained in:
2015-08-13 16:53:34 +02:00
parent 0415603a49
commit 6e97f74b0a
23 changed files with 72 additions and 26 deletions
+6
View File
@@ -0,0 +1,6 @@
FactoryGirl.define do
factory :product_variant do
sequence(:name){|i| "Variant #{i}"}
association :product
end
end