bansho/app/sidebar/sidebar_test.js
2015-01-15 16:56:37 -05:00

19 lines
394 B
JavaScript

'use strict';
describe('Sidebar module', function () {
beforeEach(module('adagios.sidebar'));
describe('SideBarCtrl', function () {
it('should be defined', inject(function ($controller) {
var scope, ctrl;
scope = {};
ctrl = $controller('NavBarCtrl', { $scope : scope });
expect(ctrl).toBeDefined();
}));
});
});