Sha256: a2dd5a496d743733aba6d1d27ba3424df70c14f5e630ba37290252008efee470

Contents?: true

Size: 1.01 KB

Versions: 25

Compression:

Stored size: 1.01 KB

Contents

require 'spec_helper'

describe Picky::Backends::Memory::Marshal do

  context 'hash-based indexes' do
    let(:marshal) { described_class.new 'spec/temp/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 "forwards to the given hash" do
        hash = stub :hash

        marshal.should_receive(:dump_marshal).once.with hash

        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(spec/temp/some/cache/path/to/file.memory.dump)'
      end
    end
  end

end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
picky-4.19.4 spec/lib/backends/memory/marshal_spec.rb
picky-4.19.3 spec/lib/backends/memory/marshal_spec.rb
picky-4.19.2 spec/lib/backends/memory/marshal_spec.rb
picky-4.19.1 spec/lib/backends/memory/marshal_spec.rb
picky-4.19.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.18.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.17.1 spec/lib/backends/memory/marshal_spec.rb
picky-4.17.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.16.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.15.1 spec/lib/backends/memory/marshal_spec.rb
picky-4.15.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.14.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.13.1 spec/lib/backends/memory/marshal_spec.rb
picky-4.13.0 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.13 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.12 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.11 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.10 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.8 spec/lib/backends/memory/marshal_spec.rb
picky-4.12.7 spec/lib/backends/memory/marshal_spec.rb