モデルgroup.rbと、モードレスのコントローラーgroup_invitations.rbがあります。
GroupInvitationsController
before_filter :find_group_by_group_id
before_filter :authenticate_user!
before_filter :current_ability
authorize_resource :class => false
def current_ability
@current_ability ||= Ability.new(current_user, @group)
end
このためのrspecを書くとき:
it "should be able to create" do
ability = Ability.new(nil)
ability.should be_able_to(:create, GroupInvitation.new)
end
次に、rspecは次のエラーでエラーになります。
NameError:初期化されていない定数GroupInvitation
このモードレスコントローラーをテストするためにrspecを設定するにはどうすればよいですか?ありがとう