|
|
@ -88,7 +88,7 @@ describe('Personal Message Manager', function() { |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
describe('#normalizeMsgData', function() { |
|
|
|
describe('#normalizeMsgData', function() { |
|
|
|
it('converts text to a utf8 buffer', function() { |
|
|
|
it('converts text to a utf8 hex string', function() { |
|
|
|
var input = 'hello' |
|
|
|
var input = 'hello' |
|
|
|
var output = messageManager.normalizeMsgData(input) |
|
|
|
var output = messageManager.normalizeMsgData(input) |
|
|
|
assert.equal(output, '0x00680065006c006c006f', 'predictably hex encoded') |
|
|
|
assert.equal(output, '0x00680065006c006c006f', 'predictably hex encoded') |
|
|
|