BBC에서 BBC 홈페이지를 어떻게 만들었는지 간단하게 소개한 내용이 있다.


http://www.bbc.co.uk/blogs/internet/entries/47a96d23-ae04-444e-808f-678e6809765d



여기에서 주목할 내용은 Continuous Delivery를 위해 Acceptance test 용으로 mocha라는 툴을 썼다고 나온다.


http://mochajs.org/

https://github.com/mochajs/mocha



star가 10,000개가 넘을 정도로 인기가 좋다. 기회가 된다면 써봐야지..




describe('Array', function() {
  describe('#indexOf()', function() {
    it('should return -1 when the value is not present', function() {
      [1,2,3].indexOf(5).should.equal(-1);
      [1,2,3].indexOf(0).should.equal(-1);
    });
  }); 

});


Posted by '김용환'
,