我正在使用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
我做错了什么吗?
答案 0 :(得分:1)
对我而言,测试数据库方案不同步,rake db:test:load
修复了问题。