0
我想要測試是否如何測試在軌測試情況下我的主頁路線
- 我的家在正確的控制器和操作「/」結束
- 無論是「/」返回成功
我在routes.rb中
root :to => "pages#home"
寫了這個,在我的測試/寫函本次測試。
require 'test_helper'
class PagesControllerTest < ActionController::TestCase
def test_home_page
get :home
assert_response :success
end
end
並且它返回成功。但實際上,這個測試用例測試了實際的控制器,而不是主頁根路由及其成功。我還能如何獲得我所需的測試?請幫忙。