bansho/app/navbar/navbar_test.js
2015-01-15 15:54:02 -05:00

20 lines
443 B
JavaScript

/*global describe, beforeEach, it, inject, expect*/
'use strict';
describe('Navbar module', function () {
beforeEach(module('adagios.navbar'));
describe('NavBarCtrl', function () {
it('should be defined', inject(function ($controller) {
var scope, ctrl;
scope = {};
ctrl = $controller('NavBarCtrl', { $scope : scope });
expect(ctrl).toBeDefined();
}));
});
});