# Generated by generate.rb require 'helper' describe_moneta "transformer_marshal_rmd160" do def new_store Moneta.build do use :Transformer, :key => [:marshal, :rmd160], :value => :marshal adapter :Memory end end def load_value(value) Marshal.load(value) end include_context 'setup_store' it_should_behave_like 'null_objectkey_objectvalue' it_should_behave_like 'null_objectkey_stringvalue' it_should_behave_like 'null_objectkey_hashvalue' it_should_behave_like 'null_objectkey_booleanvalue' it_should_behave_like 'null_stringkey_objectvalue' it_should_behave_like 'null_stringkey_stringvalue' it_should_behave_like 'null_stringkey_hashvalue' it_should_behave_like 'null_stringkey_booleanvalue' it_should_behave_like 'null_hashkey_objectvalue' it_should_behave_like 'null_hashkey_stringvalue' it_should_behave_like 'null_hashkey_hashvalue' it_should_behave_like 'null_hashkey_booleanvalue' it_should_behave_like 'store_objectkey_objectvalue' it_should_behave_like 'store_objectkey_stringvalue' it_should_behave_like 'store_objectkey_hashvalue' it_should_behave_like 'store_objectkey_booleanvalue' it_should_behave_like 'store_stringkey_objectvalue' it_should_behave_like 'store_stringkey_stringvalue' it_should_behave_like 'store_stringkey_hashvalue' it_should_behave_like 'store_stringkey_booleanvalue' it_should_behave_like 'store_hashkey_objectvalue' it_should_behave_like 'store_hashkey_stringvalue' it_should_behave_like 'store_hashkey_hashvalue' it_should_behave_like 'store_hashkey_booleanvalue' it_should_behave_like 'returndifferent_objectkey_objectvalue' it_should_behave_like 'returndifferent_objectkey_stringvalue' it_should_behave_like 'returndifferent_objectkey_hashvalue' it_should_behave_like 'returndifferent_stringkey_objectvalue' it_should_behave_like 'returndifferent_stringkey_stringvalue' it_should_behave_like 'returndifferent_stringkey_hashvalue' it_should_behave_like 'returndifferent_hashkey_objectvalue' it_should_behave_like 'returndifferent_hashkey_stringvalue' it_should_behave_like 'returndifferent_hashkey_hashvalue' it_should_behave_like 'marshallable_key' it_should_behave_like 'marshallable_value' it_should_behave_like 'transform_value' it_should_behave_like 'increment' end