copay/test/test.storage-plain.js

18 lines
410 B
JavaScript
Raw Normal View History

2014-04-14 13:17:56 -07:00
'use strict';
2014-04-14 14:08:18 -07:00
if (typeof process === 'undefined' || !process.version) {
// browser
2014-04-14 13:17:56 -07:00
var chai = chai || require('chai');
var should = chai.should();
var copay = copay || require('../copay');
2014-04-14 14:08:18 -07:00
var Plain = copay.StoragePlain;
2014-04-14 13:17:56 -07:00
2014-04-14 14:08:18 -07:00
describe('Storage/Plain model', function() {
2014-04-14 13:17:56 -07:00
it('should create an instance', function () {
2014-04-14 14:08:18 -07:00
var s = new Plain();
2014-04-14 13:17:56 -07:00
should.exist(s);
});
});
}