69432: Tests

This commit is contained in:
Kristof De Langhe
2020-03-12 10:18:49 +01:00
parent adfffac730
commit 20f8f913cf
6 changed files with 388 additions and 7 deletions

View File

@@ -51,6 +51,14 @@ describe('ServerSyncBufferEffects', () => {
_links: { self: { href: link } }
});
return observableOf(object);
},
getBySelfLink: (link) => {
const object = Object.assign(new DSpaceObject(), {
_links: {
self: { href: link }
}
});
return observableOf(object);
}
}
},