test/test_git.rb in hoc-0.8 vs test/test_git.rb in hoc-0.8.1

- old
+ new

@@ -1,9 +1,9 @@ # encoding: utf-8 # -# Copyright (c) 2014-2017 Teamed.io -# Copyright (c) 2014-2017 Yegor Bugayenko +# Copyright (c) 2014-2018 Teamed.io +# Copyright (c) 2014-2018 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 @@ -24,12 +24,12 @@ require 'minitest/autorun' require 'hoc/git' require 'tmpdir' # Git test. -# Author:: Yegor Bugayenko (yegor@teamed.io) -# Copyright:: Copyright (c) 2014-2017 Yegor Bugayenko +# Author:: Yegor Bugayenko (yegor256@gmail.com) +# Copyright:: Copyright (c) 2014-2018 Yegor Bugayenko # License:: MIT class TestGit < Minitest::Test def test_parsing skip if Gem.win_platform? Dir.mktmpdir 'test' do |dir| @@ -45,11 +45,11 @@ echo 'good bye, world!' > test.txt git commit -qam 'modify line' rm test.txt git commit -qam 'delete line' ") - hits = HOC::Git.new(dir, []).hits + hits = HOC::Git.new(dir, [], '').hits assert_equal 1, hits.size assert_equal 4, hits[0].total end end @@ -59,11 +59,11 @@ raise unless system(" set -e cd '#{dir}' git init --quiet . ") - hits = HOC::Git.new(dir, []).hits + hits = HOC::Git.new(dir, [], '').hits assert_equal 1, hits.size assert_equal 0, hits[0].total end end @@ -81,10 +81,10 @@ git commit -qam 'binary file' dd if=/dev/urandom of=test.dat bs=1 count=65536 git add test.dat git commit -qam 'binary file modified' ") - hits = HOC::Git.new(dir, []).hits + hits = HOC::Git.new(dir, [], '').hits assert_equal 1, hits.size assert_equal 0, hits[0].total end end end