require 'spec_helper' require 'taza/entity' require 'extensions/hash' # This is too tightly coupled to Taza::Entity describe 'Hash Extensions' do it "should add methods for hash keys to some instance" do entity = {'apple' => 'pie'}.convert_hash_keys_to_methods(nil) expect(entity).to respond_to :apple end it "should not add the methods to a hash" do entity = {'apple' => 'pie'}.convert_hash_keys_to_methods(nil) expect(entity).to_not be_a_instance_of Hash end end