Sha256: 668feb1a45baf06a51b9eb79c2ccef9820077e1c10b625e689aebcb546a698eb
Contents?: true
Size: 985 Bytes
Versions: 1
Compression:
Stored size: 985 Bytes
Contents
require File.dirname(__FILE__) + '/spec_helper' describe CouchPotato, 'attachments' do it "should persist an attachment" do comment = Comment.new :title => 'nil' comment._attachments = {'body' => {'data' => 'a useful comment', 'content_type' => 'text/plain'}} CouchPotato.database.save! comment CouchPotato.couchrest_database.fetch_attachment(comment.to_hash, 'body').to_s.should == 'a useful comment' end it "should give me information about the attachments of a document" do comment = Comment.new :title => 'nil' comment._attachments = {'body' => {'data' => 'a useful comment', 'content_type' => 'text/plain'}} CouchPotato.database.save! comment comment_reloaded = CouchPotato.database.load comment.id comment_reloaded._attachments.should == {"body" => {"content_type" => "text/plain", "stub" => true, "length" => 16}} end it "should have an empty array for a new object" do Comment.new._attachments.should == {} end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
couch_potato-0.2.12 | spec/attachments_spec.rb |