kloudbuster/kb_web/test/spec/controllers/about.js

24 lines
552 B
JavaScript

'use strict';
describe('Controller: AboutCtrl', function () {
// load the controller's module
beforeEach(module('kbWebApp'));
var AboutCtrl,
scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
AboutCtrl = $controller('AboutCtrl', {
$scope: scope
// place here mocked dependencies
});
}));
it('should attach a list of awesomeThings to the scope', function () {
expect(AboutCtrl.awesomeThings.length).toBe(3);
});
});