Sha256: 0fc96f4f148429a768f1d35c64a03ebd8d5897766796010244e1a1657bb53c0d

Contents?: true

Size: 347 Bytes

Versions: 1

Compression:

Stored size: 347 Bytes

Contents

shared_examples_for "a marshaled adapter" do
  it_should_behave_like 'an adapter'

  AdapterTestTypes.each do |type, (key, key2)|
    it "writes Object values to keys that are #{type}s like a Hash" do
      handle_failed_connections do
        adapter[key] = {:foo => :bar}
        adapter[key].should == {:foo => :bar}
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
adapter-0.5 spec/support/marshal_adapter.rb