LoginSignup
1
1

More than 5 years have passed since last update.

Rspecでメソッドチェーンを書くときに迷った

Last updated at Posted at 2018-08-15

Railsでコントローラのテストを書くときに、こういうコードをrspecで書きたいと思いました。

@book = Book.find_by_info(set_information).first

こういうふうに書くらしい。

allow(Book).to receive_message_chain(:find_by_info, :first){ book }

参考URL
Relish

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1