写真モデルがあり、CarrierWave 経由でファイルのアップロードを実装しました (私のアプリはうまく機能します):
class Photo < ActiveRecord::Base
attr_accessible :description, :image
mount_uploader :image, ImageUploader
validates :description, :length => { :maximum => 500, :message => :max_lenght_message }
validates :image, :presence => { :message => :presence_message }
end
ここで、指定されたパス画像を持つモデルが保存されることをモデル仕様で確認したいと思います(指定されたパスにファイルをアップロードしました):
require 'spec_helper'
describe Photo do
before(:each){ @attr = { :description => "some text is here", :image => "#{Rails.root}/spec/fixtures/files/violin.jpg" } }
describe "DB" do
it "should create with valid params" do
expect do
Photo.create( @attr )
end.should change( Photo, :count ).by( 1 )
end
end
end
しかし、これはうまくいきません:
1) Photo DB should create with valid params
Failure/Error: Photo.create( @attr )
CarrierWave::FormNotMultipart:
You tried to assign a String or a Pathname to an uploader, for security reasons, this is not allowed.
If this is a file upload, please check that your upload form is multipart encoded.
それを処理する正しい方法は何ですか?