aboutsummaryrefslogtreecommitdiffstats
path: root/formatters.inputPostFormatter.js
diff options
context:
space:
mode:
Diffstat (limited to 'formatters.inputPostFormatter.js')
-rw-r--r--formatters.inputPostFormatter.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/formatters.inputPostFormatter.js b/formatters.inputPostFormatter.js
deleted file mode 100644
index 705a93bc..00000000
--- a/formatters.inputPostFormatter.js
+++ /dev/null
@@ -1,30 +0,0 @@
-var chai = require('chai');
-var assert = chai.assert;
-var formatters = require('../lib/web3/formatters.js');
-
-describe('formatters', function () {
- describe('inputPostFormatter', function () {
- it('should return the correct value', function () {
-
- // input as strings and numbers
- assert.deepEqual(formatters.inputPostFormatter({
- from: '0x00000',
- to: '0x00000',
- payload: {test: 'test'},
- ttl: 200,
- priority: 1000,
- topics: ['hello','mytopics']
- }), {
- from: '0x00000',
- to: '0x00000',
- payload: '0x7b2274657374223a2274657374227d',
- ttl: '0xc8',
- priority: '0x3e8',
- topics: ['0x68656c6c6f','0x6d79746f70696373'],
- workToProve: '0x0'
- });
-
- });
- });
-});
-