removed user settings test- unused

This commit is contained in:
thoughtworker 2013-11-19 14:53:26 +05:30
parent 574fc39ce9
commit d0fa56e2bd

View File

@ -1,19 +0,0 @@
describe("UserSettingController", function() {
var resourceCallback;
beforeEach(function() {
this.scope = {
$broadcast: jasmine.createSpy("$scope.$broadcast(")
};
this.resourceFactory = {userListResource: {
getAllUsers: jasmine.createSpy('userResource.getAllUsers()').andCallFake(function(callback) {
resourceCallback = callback;
})
}};
this.controller = new mifosX.controllers.UserListController(this.scope, this.resourceFactory);
});
});