预期的响应是<:success>,但是< 301>

时间:2012-07-26 17:57:52

标签: ruby-on-rails ruby ruby-on-rails-3 testing minitest

我有没有测试的应用程序,现在我试图添加它们(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 testExpected response to be a <success>, but was <301>错误。 问题在哪里?

编辑: 我的控制器代码:

class TestController < ApplicationController
  def test
  end
end

1 个答案:

答案 0 :(得分:2)

我已经解决了!刚刚删除了force_ssl并在生产配置中添加了config.force_ssl = true