在 yml 文件中为测试指定 Paperclip 字段的最佳方法是什么?Fixtures with Paperclip中概述了其中一种可能的解决方案,但我不确定如何使其工作。
这是我所拥有的:
模型.yml
one:
id: 2
image: image.jpg
two:
id: 2
image: image.jpg
模型
class Doodle < ActiveRecord::Base
attr_accessible :image
has_attached_file :image,
:styles => {:thumb => "100x100>"},
:storage => :s3,
:s3_credentials => S3_CREDENTIALS
干杯,安德烈