19 lines
399 B
JavaScript
19 lines
399 B
JavaScript
'use strict';
|
|
|
|
describe('Tactical module', function () {
|
|
|
|
beforeEach(module('adagios.tactical'));
|
|
|
|
describe('TacticalCtrl', function () {
|
|
|
|
it('should be defined', inject(function ($controller) {
|
|
var scope, ctrl;
|
|
scope = {};
|
|
ctrl = $controller('TacticalCtrl', { $scope : scope });
|
|
|
|
expect(ctrl).toBeDefined();
|
|
}));
|
|
|
|
});
|
|
});
|