mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
fix findByHref test
This commit is contained in:
@@ -53,15 +53,17 @@ describe('ResourcePolicyService', () => {
|
|||||||
notificationsService,
|
notificationsService,
|
||||||
http,
|
http,
|
||||||
comparator
|
comparator
|
||||||
)
|
);
|
||||||
|
|
||||||
|
spyOn((service as any).dataService, 'findByHref').and.callThrough();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('findByHref', () => {
|
describe('findByHref', () => {
|
||||||
it('should configure the proper GetRequest', () => {
|
it('should proxy the call to dataservice.findByHref', () => {
|
||||||
scheduler.schedule(() => service.findByHref(requestURL));
|
scheduler.schedule(() => service.findByHref(requestURL));
|
||||||
scheduler.flush();
|
scheduler.flush();
|
||||||
|
|
||||||
expect(requestService.configure).toHaveBeenCalledWith(new GetRequest(requestUUID, requestURL, {}));
|
expect((service as any).dataService.findByHref).toHaveBeenCalledWith(requestURL);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return a RemoteData<ResourcePolicy> for the object with the given URL', () => {
|
it('should return a RemoteData<ResourcePolicy> for the object with the given URL', () => {
|
||||||
|
Reference in New Issue
Block a user