認証方法があり、それを application_controller に入れたいと考えています。
class ApplicationController < ActionController::Base
helper_method :check_cred
def check_cred
"within check cred"
end
しかし、私がこれを行うと
require 'spec_helper'
describe ApplicationController do
it 'should check_cred', task050: true do
check_cred.should == 'within check cred'
end
end
私は得る:
undefined local variable or method `check_cred' for #<RSpec::Core::ExampleGroup::Nested_9:0x007ff5e3e40558>
このようなメソッドを呼び出してテストするにはどうすればよいでしょうか?
どうも