This repository has been archived on 2020-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
sp4ke.github.com/test/unit/controllersSpec.js
2010-12-23 22:32:09 -08:00

30 lines
386 B
JavaScript

/* jasmine specs for controllers go here */
describe('MyCtrl1', function(){
var myCtrl1;
beforeEach(function(){
myCtrl1 = new MyCtrl1();
});
it('should ....', function() {
//spec body
});
});
describe('MyCtrl2', function(){
var myCtrl2;
beforeEach(function(){
myCtrl2 = new MyCtrl2();
});
it('should ....', function() {
//spec body
});
});