renaming files

This commit is contained in:
Manuel Araoz 2014-04-16 11:55:18 -03:00
commit 609ba4ef71
11 changed files with 14 additions and 14 deletions

View file

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