rspec2 & capybaraを使用してHTTP基本認証でレール3.1アプリにログインする方法をテストしますか?rails rspec http基本認証テスト
私はこれを使用しています。
describe "GET 'index'" do
it "should be successful" do
request.env["HTTP_AUTHORIZATION"] = "Basic " + Base64::encode64("username:password")
get 'index'
response.should be_success
end
end
しかし、このエラーが表示されます。
NoMethodError:
undefined method `env' for nil:NilClass
がhttp://stackoverflow.com/questions/4329985/http-basic-auth-for-capybara – zetetic