hoc 0.5 → 0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
")
|