0
工廠女孩可以做這樣的事情:創建一個字典作爲FactoryGirl屬性
FactoryGirl define
factory :post do
content "some content"
styles "styles here"
team 1
end
end
但是,如果我嘗試出廠區塊內是這樣的:
factory :post do
content "some content"
styles "styles here"
team 1
my_dictionary {'a' => 1, 'b' => 2}
end
的my_dictionary沒有得到解釋爲字典類型。我不知道如何將字典作爲FactoryGirl中的一個屬性。誰能幫我 ?