BBC에서 BBC 홈페이지를 어떻게 만들었는지 간단하게 소개한 내용이 있다.
http://www.bbc.co.uk/blogs/internet/entries/47a96d23-ae04-444e-808f-678e6809765d
여기에서 주목할 내용은 Continuous Delivery를 위해 Acceptance test 용으로 mocha라는 툴을 썼다고 나온다.
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);
});
});
});
'scribbling' 카테고리의 다른 글
조율된 누락 문제 (coordinated omission problem) (0) | 2016.09.07 |
---|---|
평온을 비는 기도(Serenity Prayer) (0) | 2016.09.06 |
cassandra에 그래프 DB 엔진을 붙이다. (0) | 2016.05.31 |
데생 포탈 (그림 그리는 사람에게 참조될 만한 포털) (0) | 2016.05.11 |
[펌] 스택 오버플로우(stack overflow) 아키텍처 (0) | 2016.03.16 |