2015-02-26 14:54:49 +00:00
|
|
|
var assert = require('assert');
|
2015-03-08 17:18:52 +00:00
|
|
|
var utils = require('../lib/utils/utils.js');
|
2015-02-26 14:54:49 +00:00
|
|
|
|
2015-03-25 21:17:35 +00:00
|
|
|
describe('lib/utils/utils', function () {
|
2015-02-26 14:54:49 +00:00
|
|
|
describe('toDecimal', function () {
|
|
|
|
it('should return the correct value', function () {
|
|
|
|
|
|
|
|
assert.equal(utils.toDecimal("0x3e8"), '1000');
|
|
|
|
// allow compatiblity
|
|
|
|
assert.equal(utils.toDecimal(100000), '100000');
|
|
|
|
assert.equal(utils.toDecimal('100000'), '100000');
|
|
|
|
});
|
|
|
|
});
|
2015-03-08 17:18:52 +00:00
|
|
|
});
|