Controller Concernのテスト 例えばいいねアクションを追加するためのLikableというものがあるとする. これのテストをどうするか. # app/controllers/concerns/likable.rb module Likable extend ActiveSupport::Concern included do before_action :set_likable end def like current_user.likes.create(likable: @likable) # viewをrenderしたりとか end private def set_likable raise NotImplementedError, "#{self.class}#set_likable is not implemented" end end anonymous contr