音の鳴るブログ

鳴らないこともある

2015-01-17から1日間の記事一覧

乱数を使う関数のテスト

function coin(x) { return Math.random() < x; } こういう関数があったとして、どうテストを書くのか。 ぱっと思いつくのはこういう感じで、Math.random 自体を上書きするやり方。 describe("coin(x)", function() { it("works", sinon.test(function() { t…