How_To_Test_Private_Method_With_Rspec
方法
- 引数がない場合
expect(obj.send(:private_method)).to ...
- 引数がある場合
expect(obj.send(:private_method, ref1, ref2, ...)).to ...
Quotes
Tags
#Rails #Rspec
expect(obj.send(:private_method)).to ...
expect(obj.send(:private_method, ref1, ref2, ...)).to ...
#Rails #Rspec