aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-10-22 08:58:18 +0800
committerDan Finlay <dan@danfinlay.com>2016-10-22 08:58:18 +0800
commit152419a79bd26d9b6f5af43c2066eb1e6f619716 (patch)
tree645d3b227f6323e0339f68eb1d36529a6efc4761 /test
parenta462fc82e00c98f4e8c018fbd5dac36d74b88efc (diff)
parenteba37e773df54276e84d27c02a370719f670cc8b (diff)
downloadtangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar.gz
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar.bz2
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar.lz
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar.xz
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.tar.zst
tangerine-wallet-browser-152419a79bd26d9b6f5af43c2066eb1e6f619716.zip
Merge branch 'master' into i328-MultiVault
Diffstat (limited to 'test')
-rw-r--r--test/unit/util_test.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/unit/util_test.js b/test/unit/util_test.js
index 45e545e8e..00528b905 100644
--- a/test/unit/util_test.js
+++ b/test/unit/util_test.js
@@ -227,5 +227,27 @@ describe('util', function() {
assert.equal(result.toString(10), '1111000000000000000', 'accepts decimals')
})
})
+ describe('#isHex', function(){
+ it('should return true when given a hex string', function() {
+ var result = util.isHex('c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2')
+ assert(result)
+ })
+
+ it('should return false when given a non-hex string', function() {
+ var result = util.isHex('c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714imnotreal')
+ assert(!result)
+ })
+
+ it('should return false when given a string containing a non letter/number character', function() {
+ var result = util.isHex('c3ab8ff13720!8ad9047dd39466b3c%8974e592c2fa383d4a396071imnotreal')
+ assert(!result)
+ })
+
+ it('should return true when given a hex string with hex-prefix', function() {
+ var result = util.isHex('0xc3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2')
+ assert(result)
+ })
+
+ })
})
})