paperclip gem を使用して画像をアップロードしています。
次のようなテストがあります。
describe Person do
it { should have_attached_file(:image_one) }
end
私のモデルには次のコードがあります
class Person < ActiveRecord::Base
attr_accessible :first_name, :last_name, :gender, :story, :image_one
has_attached_file :image_one
end
テストはまだ失敗しています。
私のspec_helperファイルには次のものもあります
require 'paperclip/matchers'
config.include Paperclip::Shoulda::Matchers
私が間違っていることはありますか?