アラタナ研究所のレセプションに行った 今日のポエム RSpecでinitializeメソッドをスキップしたい May 24, 2011 01:47 | @技術/プログラミング RSpecでテストコードを書いていて、initializeメソッドをテスト時にスキップしたいと思った。ググってたらこんなのを見つけた。 How to test a method call in a constructor with rspec i have a constructor like this: class Foo def initialize(options) @options = options initialize_some_other_stuff end end and want to test the call to initialize_some_other_stuff if a stackoverflow.com