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

19 lines
439 B
JavaScript

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