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