class CodeClimate::TestReporter::Git

def committed_at_from_git

def committed_at_from_git
  committed_at = git("log -1 --pretty=format:%ct")
  committed_at.to_i.zero? ? nil : committed_at.to_i
end