Ошибка с Paperclip и RSpec 2.6 - PullRequest
2 голосов
/ 28 июля 2011

Я пытаюсь проверить методы скрепки в моей модели, и у меня возникла следующая проблема:

1) InventoryImportRequest 
Failure/Error: it { should have_attached_file(:file) }
NoMethodError:
undefined method has_attached_file?' for #<InventoryImportRequest:0x000001064fc728>
# ./spec/models/inventory_import_request_spec.rb:7:inblock (2 levels) in '

Мой spec_helper.rb настроен как:

require 'spec/rails'
require 'paperclip/matchers'

Dir[Rails.root.join("spec/support/*/.rb")].each {|f| require f}

RSpec.configure do |config|
    config.include Paperclip::Shoulda::Matchers
end

I 'm с использованием Ruby 1.9.2-p180, Rails 3.0.7, RSpec 2.6.0 и Paperclip 2.3.8

...