hoc 0.5 → 0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/hoc/version.rb +1 -1
- data/test/test_git.rb +2 -2
- metadata +1 -1
data/lib/hoc/version.rb
CHANGED
data/test/test_git.rb
CHANGED
@@ -73,10 +73,10 @@ class TestGit < Minitest::Test
|
|
73
73
|
git init .
|
74
74
|
git config user.email test@teamed.io
|
75
75
|
git config user.name test
|
76
|
-
dd if=/dev/
|
76
|
+
dd if=/dev/urandom of=test.dat bs=1 count=65536
|
77
77
|
git add test.dat
|
78
78
|
git commit -am 'binary file'
|
79
|
-
dd if=/dev/
|
79
|
+
dd if=/dev/urandom of=test.dat bs=1 count=65536
|
80
80
|
git add test.dat
|
81
81
|
git commit -am 'binary file modified'
|
82
82
|
")
|