OOP

Mixinは有害か? - Sooey

ちょっと前のときどきの雑記帖で紹介されていたMixins considered harmfulシリーズが面白そうだったので1と2を読んでみた。Mixins considered harmful/1Mixins considered harmful/2Mixins considered harmful/3Mixins considered harmful/4以下、かんたんな…

RSpec の Mock の仕組みの一部を見る - takihiroの日記

RSpec のバージョンは 1.1.12 です。次のコードの実行の流れを見ていきます。obj = Object.newobj.should_receive(:object_id).and_return(1000)obj.object_id「obj は object_id メソッドを呼ばれる」というスペックです。 should_receive メソッドなぜ obj…