class TestUnit::Generators::ScaffoldGenerator

def attributes_string

def attributes_string
  if attributes_hash.empty?
    "{}"
  else
    "{ #{attributes_hash.map { |k, v| "#{k}: #{v}" }.join(", ")} }"
  end
end