を使用して実行しているテストのスタブの作成に問題がありますminitest (4.7.0)
。以前のSOの質問から調査したものから次のことを試しましたが、機能しません。
test / model / book_test.rb
Book.stub :title, "War and Peace" do
book = Book.new
book.title.must_equal "War and Peace"
end
エラー
NameError: undefined method 'title' for `Book'
app / models / book.rb
class Book
#I tried adding the following according to the github readme but it doesn't work:
#def title.fake_method
#end
end