Vincent Fournier c7c793b699 Improve application configuration
Change-Id: Ic689dee2b15ace091a4e61995d3c64641660b899
2015-07-29 14:31:06 -04:00

19 lines
398 B
JavaScript

'use strict';
describe('Tactical module', function () {
beforeEach(module('bansho.tactical'));
describe('TacticalCtrl', function () {
it('should be defined', inject(function ($controller) {
var scope, ctrl;
scope = {};
ctrl = $controller('TacticalCtrl', { $scope : scope });
expect(ctrl).toBeDefined();
}));
});
});