Sha256: 5310e1ad91b6e0bd57e2ddcdf5df2f80d15a2e530df2d086a0d9771c4ce1c174

Contents?: true

Size: 1.04 KB

Versions: 14

Compression:

Stored size: 1.04 KB

Contents

require 'spec_helper'

describe Picky::Backends::Memory::Marshal do
  
  context 'hash-based indexes' do
    let(:marshal) { described_class.new 'some/cache/path/to/file' }
  
    describe 'extension' do
      it 'is correct' do
        marshal.extension.should == :dump
      end
    end

    describe 'initial' do
      it 'is correct' do
        marshal.initial.should == {}
      end
    end
    
    describe "dump" do
      it "delegates to the given hash" do
        hash = stub :hash
      
        hash.should_receive(:dump_marshal).once.with "some/cache/path/to/file.memory.dump"
      
        marshal.dump hash
      end
    end
  
    describe "retrieve" do
      it "raises" do
        lambda do
          marshal.retrieve
        end.should raise_error("Can't retrieve from marshalled file. Use text file.")
      end
    end
  
    describe 'to_s' do
      it 'returns the cache path with the default file extension' do
        marshal.to_s.should == 'Picky::Backends::Memory::Marshal(some/cache/path/to/file.memory.dump)'
      end
    end
  end
  
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
picky-3.5.2 spec/lib/backends/memory/marshal_spec.rb
picky-3.5.1 spec/lib/backends/memory/marshal_spec.rb
picky-3.5.0 spec/lib/backends/memory/marshal_spec.rb
picky-3.4.3 spec/lib/backends/memory/marshal_spec.rb
picky-3.4.2 spec/lib/backends/memory/marshal_spec.rb
picky-3.4.1 spec/lib/backends/memory/marshal_spec.rb
picky-3.4.0 spec/lib/backends/memory/marshal_spec.rb
picky-3.3.3 spec/lib/backends/memory/marshal_spec.rb
picky-3.3.2 spec/lib/backends/memory/marshal_spec.rb
picky-3.3.1 spec/lib/backends/memory/marshal_spec.rb
picky-3.3.0 spec/lib/backends/memory/marshal_spec.rb
picky-3.2.0 spec/lib/backends/memory/marshal_spec.rb
picky-3.1.13 spec/lib/backends/memory/marshal_spec.rb
picky-3.1.12 spec/lib/backends/memory/marshal_spec.rb