[Entanglement] Link service returns object in new context

The link service return the object in the new context.
This commit is contained in:
Pete Richards
2015-08-06 14:55:50 -07:00
parent 4c56e4ffdc
commit 4a755e259f
3 changed files with 26 additions and 20 deletions

View File

@@ -25,7 +25,8 @@
define(
[
'../../src/services/LinkService',
'../DomainObjectFactory'
'../DomainObjectFactory',
'../ControlledPromise'
],
function (LinkService, domainObjectFactory) {
"use strict";
@@ -177,6 +178,11 @@ define(
expect(persistenceCapability.persist).toHaveBeenCalled();
});
it("returns object representing new link", function () {
linkService.perform(object, parentObject);
});
});
});
}