]> pd.if.org Git - zpackage/blob - t/hash.t
add test file for git-hash
[zpackage] / t / hash.t
1 #!/bin/sh
2
3 # test addfile
4
5 . tap.sh
6
7 vtest() {
8         res=$(zpm-hash "$1" "$2")
9         okstreq "$res" "$2" "$1 == $2"
10 }
11
12 plan 2
13
14 printf '' > hash.test
15 vtest hash.test e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
16 printf 'foo\n' > hash.test
17 vtest hash.test b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
18
19 rm hash.test
20
21
22 finish