2

我正在使用回形针 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

有什么我做错了吗?

4

1 回答 1

1

对我来说,这是测试数据库方案不同步并rake db:test:load解决了这个问题。

于 2014-04-01T11:21:51.993 回答