New 0.4 version

This commit is contained in:
Amos Haviv
2014-11-10 23:12:33 +02:00
parent ad870299c6
commit ab81d61bd3
153 changed files with 2603 additions and 2063 deletions

View File

@@ -0,0 +1,24 @@
'use strict';
(function() {
describe('HeaderController', function() {
//Initialize global variables
var scope,
HeaderController;
// Load the main application module
beforeEach(module(ApplicationConfiguration.applicationModuleName));
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
HeaderController = $controller('HeaderController', {
$scope: scope
});
}));
it('should expose the authentication service', function() {
expect(scope.authentication).toBeTruthy();
});
});
})();