it('should call GET resource with `id` and without `params`', () => {
        $httpBackend.whenGET(`/${route}/${id}`).respond(() => [200, item]);

        abstractResource.get(`${id}`).then((respond) => {
            expect(respond.data).toEqual(item);