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

- old
+ new

@@ -1,10 +1,7 @@ -# encoding: utf-8 +# Copyright (c) 2014-2019 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 # copies of the Software, and to permit persons to whom the Software is @@ -25,11 +22,11 @@ require 'hoc/git' require 'tmpdir' # Git test. # Author:: Yegor Bugayenko (yegor256@gmail.com) -# Copyright:: Copyright (c) 2014-2018 Yegor Bugayenko +# Copyright:: Copyright (c) 2014-2019 Yegor Bugayenko # License:: MIT class TestGit < Minitest::Test def test_parsing skip if Gem.win_platform? Dir.mktmpdir 'test' do |dir| @@ -45,11 +42,12 @@ 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, [], '', '2000-01-01', + Time.now.strftime('%Y-%m-%d')).hits assert_equal 1, hits.size assert_equal 4, hits[0].total end end @@ -59,11 +57,12 @@ raise unless system(" set -e cd '#{dir}' git init --quiet . ") - hits = HOC::Git.new(dir, [], '').hits + hits = HOC::Git.new(dir, [], '', '2000-01-01', + Time.now.strftime('%Y-%m-%d')).hits assert_equal 1, hits.size assert_equal 0, hits[0].total end end @@ -81,10 +80,11 @@ 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, [], '', '2000-01-01', + Time.now.strftime('%Y-%m-%d')).hits assert_equal 1, hits.size assert_equal 0, hits[0].total end end end