mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-01 06:20:29 +01:00
20 lines
469 B
JavaScript
20 lines
469 B
JavaScript
'use strict';
|
|
|
|
/* jasmine specs for controllers go here */
|
|
|
|
describe('controllers', function(){
|
|
beforeEach(module('app'));
|
|
|
|
|
|
it('should ....', inject(function($controller) {
|
|
//spec body
|
|
var AppCtrl = $controller('AppCtrl', { $scope: {} });
|
|
expect(AppCtrl).toBeDefined();
|
|
}));
|
|
|
|
it('should ....', inject(function($controller) {
|
|
//spec body
|
|
var HomeCtrl = $controller('HomeCtrl', { $scope: {} });
|
|
expect(HomeCtrl).toBeDefined();
|
|
}));
|
|
});
|