我在'Admin'命名空間中有一個相當簡單的控制器'ActivityLogsController'。當運行rails server一切都按預期工作,我可以訪問路線,如/管理/活動日誌。當我運行RSpec控制器規格時,每個動作測試都會返回一個失敗。例如: Failure/Error: get :index
ActionController::UrlGenerationError:
No
比方說,我有兩個型號,其中一個需要其他的存在來驗證: class Mother < ActiveRecord::Base
has_many :kids
end
class Kid < ActiveRecord::Base
belongs_to :mother
validates_presence_of :mother
end
當我寫模型小子試驗,我想要測試