Sha256: f016a0a98c6a07a2be5f9a22c3b0b99a0d78b4a718afd5bee25e9784af0e930b
Contents?: true
Size: 535 Bytes
Versions: 47
Compression:
Stored size: 535 Bytes
Contents
# Copyright 2015 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. from recipe_engine import recipe_test_api class GitTestApi(recipe_test_api.RecipeTestApi): def count_objects_output(self, value): return ( 'count: %s\n' 'size: %s\n' 'in_pack: %s\n' 'packs: %s\n' 'size-pack: %s\n' 'prune-packable: %s\n' 'garbage: %s\n' 'size-garbage: %s\n' ) % tuple([value] * 8)
Version data entries
47 entries across 47 versions & 1 rubygems