我有没有测试的应用程序,现在我试图添加它们(minitest-rails),但是出了点问题。
我正在输入rails generate controller test test
我有:
require "minitest_helper"
class TestControllerTest < MiniTest::Rails::ActionController::TestCase
test "should get test" do
get :test
assert_response :success
end
end
现在我正在输入rake test
和Expected response to be a <success>, but was <301>
错误。
问题在哪里?
编辑: 我的控制器代码:
class TestController < ApplicationController
def test
end
end
答案 0 :(得分:2)
我已经解决了!刚刚删除了force_ssl
并在生产配置中添加了config.force_ssl = true
。