bansho/app/components/tactical/tactical_test.js
2015-02-03 13:51:33 -05:00

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();
}));
});
});