diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-21 00:48:08 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-21 00:48:08 +0800 |
commit | 689630d261bcaea0e192c0d4c229c1b71c2aaf0f (patch) | |
tree | db91d8b8f24bcbfdd138b7956a5c9b6c570564e1 /test | |
parent | 5c79ee4446640301f2688f886a1612865571ee01 (diff) | |
parent | 848c54dc4713d5c29993f1c41d16cd334e18081d (diff) | |
download | dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar.gz dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar.bz2 dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar.lz dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar.xz dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.tar.zst dexon-689630d261bcaea0e192c0d4c229c1b71c2aaf0f.zip |
Merge commit '53b4fda16d0b191be8ab986379a328aa38aaf916' into natspec
Diffstat (limited to 'test')
-rw-r--r-- | test/abi.parsers.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/abi.parsers.js b/test/abi.parsers.js index e9613817b..19fa1d4cf 100644 --- a/test/abi.parsers.js +++ b/test/abi.parsers.js @@ -48,7 +48,6 @@ describe('abi', function() { assert.equal(parser.test('0.1'), "0000000000000000000000000000000000000000000000000000000000000000"); assert.equal(parser.test('3.9'), "0000000000000000000000000000000000000000000000000000000000000003"); - }); it('should parse input uint128', function() { @@ -321,7 +320,7 @@ describe('abi', function() { // given var d = clone(description); - d[0].name = 'helloworld'; + d[0].name = 'helloworld(int)'; d[0].inputs = [ { type: "int" } ]; @@ -331,6 +330,7 @@ describe('abi', function() { // then assert.equal(parser.helloworld(1), "0000000000000000000000000000000000000000000000000000000000000001"); + assert.equal(parser.helloworld['int'](1), "0000000000000000000000000000000000000000000000000000000000000001"); }); @@ -755,7 +755,7 @@ describe('abi', function() { // given var d = clone(description); - d[0].name = 'helloworld'; + d[0].name = 'helloworld(int)'; d[0].outputs = [ { type: "int" } ]; @@ -765,6 +765,7 @@ describe('abi', function() { // then assert.equal(parser.helloworld("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); + assert.equal(parser.helloworld['int']("0x0000000000000000000000000000000000000000000000000000000000000001")[0], 1); }); |