blob: 8d90d0528269dd5725b41f9357eb72b134c04e32 (
plain) (
tree)
|
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# import pytest
from git_deps.gitutils import GitUtils
__author__ = "Adam Spiers"
__copyright__ = "Adam Spiers"
__license__ = "none"
def test_abbreviate_sha1():
sha1 = GitUtils.abbreviate_sha1("HEAD")
assert len(sha1) == 7
|