bansho/app/tactical/status_overview/status_overview_test.js
2015-01-15 16:56:37 -05:00

19 lines
446 B
JavaScript

'use strict';
describe('Status Overview tactical submodule', function () {
beforeEach(module('adagios.tactical.status_overview'));
describe('TacticalStatusOverViewCtrl', function () {
it('should be defined', inject(function ($controller) {
var scope, ctrl;
scope = {};
ctrl = $controller('NavBarCtrl', { $scope : scope });
expect(ctrl).toBeDefined();
}));
});
});