Wallet Class WIP

This commit is contained in:
Matias Alejo Garcia 2014-04-14 17:17:56 -03:00
commit 296c78cdf0
10 changed files with 8152 additions and 249 deletions

View file

@ -0,0 +1,16 @@
'use strict';
if (!process.version) {
var chai = chai || require('chai');
var should = chai.should();
var copay = copay || require('../copay');
var Plain = copay.Storage;
describe('Storage model', function() {
it('should create an instance', function () {
var s = new Storage();
should.exist(s);
});
});
}