mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-11 08:01:03 +01:00
21 lines
469 B
JavaScript
21 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();
|
||
|
}));
|
||
|
});
|