rpsec 2.12 では、次のヘルパー メソッド定義が機能することを期待していました。
module X
private
def build_them(type)
puts 'Catching the star'
end
end
context 'public/private instance methods' do
subject{ Class.new { extend(::X) } }
def subject.build(type)
puts "Throwing a star"
build_them(type)
end
it{ should respond_to :build}
end
実際の結果は失敗した仕様です:
expected #<Class:0x00000002ea5f90> to respond to :build
私は例が合格することを期待していました
これを正しく行う方法に関する提案はありますか?