如何测试接受图像嵌套属性的模型主题?

Given /^I have topics titled (.+)$/ do |titles|
    path ="#{RAILS_ROOT}/features/upload-files/" 
    image = File.new(path + "image.jpg")
    titles.split(', ').each do |title|
        Topic.create!(:title => title, :image => File.new(image) ) # this doesn't work!
    end
end
有帮助吗?

解决方案

Topic.create!(:title => title, :image_attributes => {:image => File.new(image) } ) # this works!
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top