class ChefSpec::Stubs::DataBagStub

def initialize(bag, &block)

def initialize(bag, &block)
  @bag   = bag.to_s
  @block = block
end

def signature

def signature
  if @block
    "stub_data_bag(#{@bag.inspect}) { # Ruby code }"
  else
    "stub_data_bag(#{@bag.inspect}).and_return(#{@value})"
  end
end