test/test_git.rb in hoc-0.7.1 vs test/test_git.rb in hoc-0.7.2
- old
+ new
@@ -1,9 +1,9 @@
# encoding: utf-8
#
-# Copyright (c) 2014 Teamed.io
-# Copyright (c) 2014 Yegor Bugayenko
+# Copyright (c) 2014-2017 Teamed.io
+# Copyright (c) 2014-2017 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
@@ -25,64 +25,64 @@
require 'hoc/git'
require 'tmpdir'
# Git test.
# Author:: Yegor Bugayenko (yegor@teamed.io)
-# Copyright:: Copyright (c) 2014 Yegor Bugayenko
+# Copyright:: Copyright (c) 2014-2017 Yegor Bugayenko
# License:: MIT
class TestGit < Minitest::Test
def test_parsing
skip if Gem.win_platform?
Dir.mktmpdir 'test' do |dir|
- fail unless system("
+ raise unless system("
set -e
cd '#{dir}'
- git init .
+ git init --quiet .
git config user.email test@teamed.io
git config user.name test
echo 'hello, world!' > test.txt
git add test.txt
- git commit -am 'add line'
+ git commit -qam 'add line'
echo 'good bye, world!' > test.txt
- git commit -am 'modify line'
+ git commit -qam 'modify line'
rm test.txt
- git commit -am 'delete line'
+ git commit -qam 'delete line'
")
hits = HOC::Git.new(dir, []).hits
assert_equal 1, hits.size
assert_equal 4, hits[0].total
end
end
def test_parsing_with_empty_git
skip if Gem.win_platform?
Dir.mktmpdir 'test' do |dir|
- fail unless system("
+ raise unless system("
set -e
cd '#{dir}'
- git init .
+ git init --quiet .
")
hits = HOC::Git.new(dir, []).hits
assert_equal 1, hits.size
assert_equal 0, hits[0].total
end
end
def test_ignores_binary_files
skip if Gem.win_platform?
Dir.mktmpdir 'test' do |dir|
- fail unless system("
+ raise unless system("
set -e
cd '#{dir}'
- git init .
+ git init --quiet .
git config user.email test@teamed.io
git config user.name test
dd if=/dev/urandom of=test.dat bs=1 count=65536
git add test.dat
- git commit -am 'binary file'
+ git commit -qam 'binary file'
dd if=/dev/urandom of=test.dat bs=1 count=65536
git add test.dat
- git commit -am 'binary file modified'
+ git commit -qam 'binary file modified'
")
hits = HOC::Git.new(dir, []).hits
assert_equal 1, hits.size
assert_equal 0, hits[0].total
end