test/test_git.rb in hoc-0.9.0 vs test/test_git.rb in hoc-0.10.0
- old
+ new
@@ -1,6 +1,6 @@
-# Copyright (c) 2014-2019 Yegor Bugayenko
+# Copyright (c) 2014-2023 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@@ -22,28 +22,30 @@
require 'hoc/git'
require 'tmpdir'
# Git test.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
-# Copyright:: Copyright (c) 2014-2019 Yegor Bugayenko
+# Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
# License:: MIT
class TestGit < Minitest::Test
def test_parsing
skip if Gem.win_platform?
Dir.mktmpdir 'test' do |dir|
raise unless system("
set -e
+ set -x
cd '#{dir}'
git init --quiet .
- git config user.email test@teamed.io
+ git config user.email test@zerocracy.com
git config user.name test
echo 'hello, world!' > test.txt
git add test.txt
git commit -qam 'add line'
echo 'good bye, world!' > test.txt
git commit -qam 'modify line'
rm test.txt
+ git add test.txt
git commit -qam 'delete line'
")
hits = HOC::Git.new(dir, [], '', '2000-01-01',
Time.now.strftime('%Y-%m-%d')).hits
assert_equal 1, hits.size
@@ -71,10 +73,10 @@
Dir.mktmpdir 'test' do |dir|
raise unless system("
set -e
cd '#{dir}'
git init --quiet .
- git config user.email test@teamed.io
+ git config user.email test@zerocracy.com
git config user.name test
dd if=/dev/urandom of=test.dat bs=1 count=65536
git add test.dat
git commit -qam 'binary file'
dd if=/dev/urandom of=test.dat bs=1 count=65536