This commit is contained in:
Josh Harvey 2014-11-20 23:52:39 -05:00
parent 2c756e231a
commit 2e51bf646e
2 changed files with 4 additions and 43 deletions

View file

@ -6,14 +6,12 @@ var _ = require('lodash');
var should = require('chai').should();
var mockery = require('mockery');
var config = require('./mocks/config.json');
var CONFIG = _.cloneDeep(config);
function requireFreshConfig() {
return _.cloneDeep(CONFIG);
}
var walletMock = require('./mocks/wallet');
var tickerMock = require('./mocks/ticker');
var traderMock = require('./mocks/trader');
@ -26,7 +24,6 @@ mockery.registerMock('lamassu-mockTrader', traderMock);
mockery.registerMock('lamassu-mockVerifier', verifierMock);
mockery.registerMock('lamassu-mockInfo', infoMock);
describe('Plugins', function() {
var plugins = null;
@ -138,7 +135,6 @@ describe('Plugins', function() {
});
describe('Ticker', function() {
it('should have called .ticker() at least once', function() {
tickerMock.getTickerCalls().should.be.at.least(1);
@ -162,7 +158,6 @@ describe('Plugins', function() {
});
});
describe('Wallet', function() {
var db = require('./mocks/db');
@ -207,7 +202,8 @@ describe('Plugins', function() {
satoshis: 1e7
};
plugins.sendBitcoins(db.FINGERPRINT_NEW, txDetails, function(err, response) {
plugins.sendBitcoins(db.FINGERPRINT_NEW, txDetails, function(err,
response) {
should.not.exist(err);
should.exist(response);
/* jshint expr: true */
@ -227,7 +223,8 @@ describe('Plugins', function() {
toAddress: walletMock.ADDR,
satoshis: 1e9
};
plugins.sendBitcoins(db.FINGERPRINT_FUNDS, txDetails, function(err, txHash) {
plugins.sendBitcoins(db.FINGERPRINT_FUNDS, txDetails, function(err,
txHash) {
should.exist(err);
err.should.be.instanceof(Error);
err.name.should.equal('InsufficientFunds');
@ -268,4 +265,3 @@ describe('Plugins', function() {
describe('Trader', function() {});
});