summaryrefslogtreecommitdiffstats
path: root/js/tests/unit/controller/NavigationControllerSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/controller/NavigationControllerSpec.js')
-rw-r--r--js/tests/unit/controller/NavigationControllerSpec.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/tests/unit/controller/NavigationControllerSpec.js b/js/tests/unit/controller/NavigationControllerSpec.js
index 78d2fc914..53d2e139f 100644
--- a/js/tests/unit/controller/NavigationControllerSpec.js
+++ b/js/tests/unit/controller/NavigationControllerSpec.js
@@ -1038,6 +1038,27 @@ describe('NavigationController', function () {
}));
+ it ('should set the feed pinning',
+ inject(function ($controller, FeedResource) {
+
+ FeedResource.add({
+ id: 2,
+ url: 'http://test.com',
+ folderId: 3,
+ ordering: 0,
+ pinned: false
+ });
+
+ FeedResource.setPinned = jasmine.createSpy('pinned');
+
+ var ctrl = $controller('NavigationController');
+
+ ctrl.togglePinned(2);
+
+ expect(FeedResource.setPinned).toHaveBeenCalledWith(2, true);
+ }));
+
+
it ('should set the full text feed',
inject(function ($controller, FeedResource, $rootScope) {