Project

General

Profile

Download (1.64 KB) Statistics
| Branch: | Tag: | Revision:
/**
* Copyright 2014 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public
* License as published by the Free Software Foundation; either version
* 2 of the License (GPLv2) or (at your option) any later version.
* There is NO WARRANTY for this software, express or implied,
* including the implied warranties of MERCHANTABILITY,
* NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
* have received a copy of GPLv2 along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
**/

describe('Controller: SystemEventsController', function() {
var $scope, Nutupane, SystemTask, mockTask;

beforeEach(module('Bastion.systems', 'Bastion.test-mocks'));

beforeEach(function() {
mockTask = {id: 4, pending: true};
Nutupane = function() {
this.table = {
showColumns: function() {}
};
this.get = function() {};
};
System = {
tasks: function() {return []}
};
SystemTask = {
get: function(task, success) {success(task)},
poll: function(task, success) {success(task)}
};
});

beforeEach(inject(function($controller, $rootScope) {
$scope = $rootScope.$new();
$controller('SystemEventsController', {$scope: $scope,
System: System,
SystemTask: SystemTask,
Nutupane: Nutupane});
}));

it("Sets a table.", function() {
expect($scope.eventsTable).toBeTruthy();
});
});
(6-6/8)