現在、Karma を JS ランナーとして使用して Jasmine でテストを書いています。以下のように、「記述」内に複数の「それ」を含めることはできますか。
describe('PhoneCat controllers', function() {
describe('PhoneListCtrl', function(){
it('should create "phones" model with 3 phones', function() {
var scope = {},
ctrl = new PhoneListCtrl(scope);
expect(scope.phones.length).toBe(2);
it('should create "greetings" models with 3 greeting', funciton(){
var scope = {},
ctrl = new PhoneListCtrl(scope);
expect(scope.greetings.length).toBe(3);
});
});
});
});
現在は失敗していますが、冗長にならずにテストを作成するにはどうすればよいでしょうか (この場合、同じコントローラーを 2 回記述する必要があります)。