이미지가 많은 사람 모델이 있는데, 이미지에는 아래에 표시된 축약 버전 인 데이터라는 Paperclip 첨부 파일 필드가 있습니다.
class Person
has_many :images
...
end
class Image
has_attached_file :data
belongs_to :person
...
end
사람은 적어도 하나의 이미지를 첨부해야합니다.
FactoryGirl을 사용할 때 다음과 유사한 코드가 있습니다.
Factory.define :image do |a|
a.data { File.new(File.join(Rails.root, 'features', 'support', 'file.png')) }
a.association :person
end
Factory.define :person do |p|
p.first_name 'Keyzer'
p.last_name 'Soze'
p.after_create do |person|
person.assets = [Factory.build(:image, :person => person)]
end
# p.images {|images| [images.association(:image)]}
end
(NB는 위에서 주석 처리 된 코드도 시도해 보았습니다) 오이 기능을 실행할 때 대부분 다음과 유사한 오류가 발생합니다.
해당 파일 또는 디렉토리 없음-/tmp/stream,9887,0.png (Errno :: ENOENT)
...
때때로 테스트가 성공적으로 실행됩니다.
누구든지 내가 여기서 어떤 문제를 겪고 있는지 또는 내가 달성하려는 것과 같은 것을 달성하기 위해 FactoryGirl과 Paperclip을 함께 사용하는 방법을 말할 수 있습니까?
Rails 3을 사용하고 있습니다.