Jamstash/test/controllers/subsonic_test.js
Hyzual b190d2f99f Moves the subsonic controller into its own module.
Removes many injected params that weren't used at all in it.
Removes the old commented getStarred function from the subsonic service.
2014-11-09 16:05:12 +01:00

19 lines
No EOL
466 B
JavaScript

describe("Subsonic controller", function() {
'use strict';
var $scope, subsonicCtrl;
/*
beforeEach(function() {
module('jamstash.subsonic.ctrl');
inject(function ($controller, $rootScope, $routeParams, utils, globals, map, subsonic, notifications) {
$scope = $rootScope.$new();
subsonicCtrl = $controller($scope, $rootScope, $routeParams, utils, globals, map, subsonic, notifications);
});
});
it("should behave...", function() {
});
*/
});