diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-31 22:22:05 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-31 22:22:05 +0800 |
commit | b20e972bec52781de806fb050e72d44b729c6541 (patch) | |
tree | 0d8114da1536ae5ec6c2c606a30e1ae4c2cb311f /test | |
parent | a8a2e3231c2ced50989dc5d23659f7482a667f69 (diff) | |
download | dexon-b20e972bec52781de806fb050e72d44b729c6541.tar dexon-b20e972bec52781de806fb050e72d44b729c6541.tar.gz dexon-b20e972bec52781de806fb050e72d44b729c6541.tar.bz2 dexon-b20e972bec52781de806fb050e72d44b729c6541.tar.lz dexon-b20e972bec52781de806fb050e72d44b729c6541.tar.xz dexon-b20e972bec52781de806fb050e72d44b729c6541.tar.zst dexon-b20e972bec52781de806fb050e72d44b729c6541.zip |
few methods moved to utils
Diffstat (limited to 'test')
-rw-r--r-- | test/utils.filters.js (renamed from test/abi.filters.js) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/abi.filters.js b/test/utils.filters.js index 42385fd2a..f2d2788b0 100644 --- a/test/abi.filters.js +++ b/test/utils.filters.js @@ -1,7 +1,7 @@ var assert = require('assert'); -var abi = require('../lib/abi.js'); +var utils = require('../lib/utils.js'); -describe('abi', function() { +describe('utils', function() { it('should filter functions and events from input array properly', function () { // given @@ -36,8 +36,8 @@ describe('abi', function() { }]; // when - var events = abi.filterEvents(description); - var functions = abi.filterFunctions(description); + var events = utils.filterEvents(description); + var functions = utils.filterFunctions(description); // then assert.equal(events.length, 1); |