aboutsummaryrefslogtreecommitdiffstats
path: root/method.formatOutput.js
diff options
context:
space:
mode:
Diffstat (limited to 'method.formatOutput.js')
-rw-r--r--method.formatOutput.js43
1 files changed, 0 insertions, 43 deletions
diff --git a/method.formatOutput.js b/method.formatOutput.js
deleted file mode 100644
index 4d88e2da..00000000
--- a/method.formatOutput.js
+++ /dev/null
@@ -1,43 +0,0 @@
-var chai = require('chai');
-var assert = chai.assert;
-var Method = require('../lib/web3/method');
-
-describe('lib/web3/method', function () {
- describe('formatOutput', function () {
- it('should format plain output', function () {
-
- // given
- var formatter = function (args) {
- return args.map(function (arg) {
- return arg + '*';
- });
- };
-
- var method = new Method({
- outputFormatter: formatter
- });
- var args = ['1','2','3'];
- var expectedArgs = ['1*', '2*', '3*'];
-
- // when
- var result = method.formatOutput(args);
-
- // then
- assert.deepEqual(result, expectedArgs);
- });
-
- it('should do nothing if there is no formatter', function () {
-
- // given
- var method = new Method({});
- var args = [1,2,3];
-
- // when
- var result = method.formatOutput(args);
-
- // then
- assert.deepEqual(result, args);
- });
- });
-});
-