trying to fix broken test

This commit is contained in:
Manuel Araoz 2014-04-17 18:35:23 -03:00
parent a5ad584d7f
commit 65b033f67e
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@ FakeStorage.prototype.get = function(wid, id) {
return this.storage[wid + '-' +id];
}
FakeStorage.prototype.setFromObj = function(id, wallet) {
// TODO
};
FakeStorage.prototype.clear = function() {
delete this['storage'];
}