diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-08-19 10:28:58 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-08-19 10:28:58 -0400 |
commit | d789386371699fee14bb5e444507a6067293ff67 (patch) | |
tree | e852391fb16a530c5ad40757b1f77b94c0c46273 /src/test/bitcoin-util-test.py | |
parent | dd2819701a1a4481ae06b24924b75d55b9feb115 (diff) |
Add "it works" test for bitcoin-tx
Diffstat (limited to 'src/test/bitcoin-util-test.py')
-rwxr-xr-x | src/test/bitcoin-util-test.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/bitcoin-util-test.py b/src/test/bitcoin-util-test.py new file mode 100755 index 0000000000..40690c2fed --- /dev/null +++ b/src/test/bitcoin-util-test.py @@ -0,0 +1,12 @@ +#!/usr/bin/python +# Copyright 2014 BitPay, Inc. +# Distributed under the MIT/X11 software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +import os +import bctest + +if __name__ == '__main__': + bctest.bctester(os.environ["srcdir"] + "/test/data", + "bitcoin-util-test.json") + |