私が使う
request.subdomain
私のアプリケーションコントローラーで。開発モードでは動作しますが、テストすると戻ります
undefined method `subdomain' for nil:NilClass
私はこのテストを持っています。
describe ApplicationController do
controller do
def index
render text: "hello"
end
end
let(:firm){FactoryGirl.create(:firm, subdomain: "test")}
let(:user){FactoryGirl.create(:user, firm: firm)}
describe "current" do
before(:each) do
@request.host = "#{firm.subdomain}.example.com"
sign_in(user)
get :index, subdomain: "test"
end
it "should current_firm" do
ApplicationController.new.current_firm.subdomain.should == "test"
end
end
end
これは、アプリケーションコントローラーのメソッドです
def current_firm
@current_firm ||= Firm.find_by_subdomain!(request.subdomain)
end
このテスト中に request メソッドが nil になるのはなぜですか?