我正在使用回形针 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
有什么我做错了吗?